mirror of
https://github.com/glest/glest-source.git
synced 2025-09-26 07:28:59 +02:00
18 lines
246 B
C++
18 lines
246 B
C++
#ifndef _NOIMPL_H_
|
|
#define _NOIMPL_H_
|
|
|
|
#ifndef WIN32
|
|
|
|
#define NOIMPL std::cerr << __PRETTY_FUNCTION__ << " not implemented.\n";
|
|
|
|
#else
|
|
|
|
#define NOIMPL std::cerr << __FUNCTION__ << " not implemented.\n";
|
|
|
|
#endif
|
|
|
|
#include "leak_dumper.h"
|
|
|
|
#endif
|
|
|