mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
11 lines
444 B
C++
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
|