https://github.com/kit-parco/networkit
Raw File
Tip revision: 4a772bc4b608efde2412d4498f931c0aabc35c43 authored by Fabian Brandt on 01 July 2021, 15:55:31 UTC
Merge pull request #783 from fabratu/fix-compiler-search
Tip revision: 4a772bc
cython_helper.h
#include <string>
#include <stdexcept>

#ifndef cython_call_operator
#define cython_call_operator operator()

void throw_runtime_error(std::string message) {
	throw std::runtime_error(message);
};
#endif
back to top