https://github.com/kit-parco/networkit
Raw File
Tip revision: d978076635e294a150c3aa5b506ad35fdf362ae4 authored by Elisabetta Bergamini on 23 June 2016, 11:14:42 UTC
merged Dev -> default
Tip revision: d978076
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