thunderbrew/src/util/Unimplemented.hpp

12 lines
444 B
C++
Raw Normal View History

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