diff options
Diffstat (limited to 'zen/warn_static.h')
-rw-r--r-- | zen/warn_static.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/zen/warn_static.h b/zen/warn_static.h deleted file mode 100644 index 44d7bd73..00000000 --- a/zen/warn_static.h +++ /dev/null @@ -1,33 +0,0 @@ -// ***************************************************************************** -// * This file is part of the FreeFileSync project. It is distributed under * -// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 * -// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved * -// ***************************************************************************** - -#ifndef WARN_STATIC_H_08724567834560832745 -#define WARN_STATIC_H_08724567834560832745 - -/* -Portable Compile-Time Warning ------------------------------ -Usage: - warn_static("my message") -*/ - -#ifdef _MSC_VER -#define STATIC_WARNING_MAKE_STRINGIZE_SUB(NUM) #NUM -#define STATIC_WARNING_MAKE_STRINGIZE(NUM) STATIC_WARNING_MAKE_STRINGIZE_SUB(NUM) - -#define warn_static(TXT) \ - __pragma(message(__FILE__ "(" STATIC_WARNING_MAKE_STRINGIZE(__LINE__) "): Warning: " ## TXT)) - -#elif defined __GNUC__ -#define STATIC_WARNING_CONCAT_SUB(X, Y) X ## Y -#define STATIC_WARNING_CONCAT(X, Y) STATIC_WARNING_CONCAT_SUB(X, Y) - -#define warn_static(TXT) \ - typedef int STATIC_WARNING_87903124 __attribute__ ((deprecated)); \ - enum { STATIC_WARNING_CONCAT(warn_static_dummy_value, __LINE__) = sizeof(STATIC_WARNING_87903124) }; -#endif - -#endif //WARN_STATIC_H_08724567834560832745 |