thunderbrew/src/util/Unimplemented.hpp

11 lines
444 B
C++

#ifndef UTIL_UNIMPLEMENTED_HPP
#define UTIL_UNIMPLEMENTED_HPP
#include <cstdio>
#define WHOA_UNIMPLEMENTED(...) \
fprintf(stderr, "Function not yet implemented: %s in %s (line %i)\n", __FUNCTION__, __FILE__, __LINE__); \
return __VA_ARGS__; \
(void)0
#endif