https://github.com/kit-parco/networkit
Raw File
Tip revision: 0c5dfa98d5273c31f2972467fc3f1a6136004beb authored by cls on 19 November 2015, 21:59:21 UTC
close branch
Tip revision: 0c5dfa9
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