mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
11 lines
181 B
C++
11 lines
181 B
C++
#ifndef __CPP_HH_INCLUDED__
|
|
#define __CPP_HH_INCLUDED__
|
|
|
|
#if __cplusplus > 199711L
|
|
#define THROW_SPEC(...)
|
|
#else
|
|
#define THROW_SPEC(...) throw(__VA_ARGS__)
|
|
#endif
|
|
|
|
#endif // CPP_HH
|