https://github.com/kit-parco/networkit
Raw File
Tip revision: 0d7ba4f0d7f0358437ec203f49c3c1515a16243d authored by cls on 07 September 2015, 10:35:15 UTC
close branch 'profiling' after merge -> Dev
Tip revision: 0d7ba4f
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