https://github.com/kit-parco/networkit
Raw File
Tip revision: 333cb9a7e431dfadf016323491dcfd24227112c5 authored by Fabian Brandt-Tumescheit on 23 March 2023, 14:50:22 UTC
Bump version 10.1
Tip revision: 333cb9a
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