Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Internal/buildver.cpp')
-rw-r--r--Source/Internal/buildver.cpp18
1 files changed, 8 insertions, 10 deletions
diff --git a/Source/Internal/buildver.cpp b/Source/Internal/buildver.cpp
index d1ba8533..43b1d46b 100644
--- a/Source/Internal/buildver.cpp
+++ b/Source/Internal/buildver.cpp
@@ -53,23 +53,21 @@
#endif
#ifndef COMPILER
- #if (defined __GNUC__)
- #define COMPILER "GCC"
- #elif (defined _MSC_VER)
- #define COMPILER "Visual Studio"
- #else
- #error Please define your platform.
- #endif
+#if (defined __GNUC__)
+#define COMPILER "GCC"
+#elif (defined _MSC_VER)
+#define COMPILER "Visual Studio"
+#else
+#error Please define your platform.
+#endif
#endif
// macro mess so we can turn APPID and APPREV into a string literal...
#define MAKEBUILDVERSTRINGLITERAL2(id, rev) \
- #id ", Revision " #rev ", Built " __DATE__ " " __TIME__ ", by " \
- COMPILER " version " __VERSION__
+#id ", Revision " #rev ", Built " __DATE__ " " __TIME__ ", by " COMPILER " version " __VERSION__
#define MAKEBUILDVERSTRINGLITERAL(id, rev) MAKEBUILDVERSTRINGLITERAL2(id, rev)
const char *GBuildVer = MAKEBUILDVERSTRINGLITERAL(APPID, APPREV);
// end of buildver.cpp ...
-