1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 23:34:37 +01:00

Indent preprocessor directives

This commit is contained in:
clang-format
2018-07-21 16:17:06 +02:00
committed by Hielke Morsink
parent b02dfdbc93
commit d787872cbe
93 changed files with 923 additions and 921 deletions

View File

@@ -12,7 +12,7 @@
#include <string>
#ifdef OPENRCT2_BUILD_INFO_HEADER
#include OPENRCT2_BUILD_INFO_HEADER
# include OPENRCT2_BUILD_INFO_HEADER
#endif
const char gVersionInfoFull[] = OPENRCT2_NAME ", "
@@ -23,16 +23,16 @@ const char gVersionInfoFull[] = OPENRCT2_NAME ", "
#endif
#if defined(OPENRCT2_BRANCH) || defined(OPENRCT2_COMMIT_SHA1_SHORT) || !defined(NDEBUG)
" ("
#if defined(OPENRCT2_BRANCH) && defined(OPENRCT2_COMMIT_SHA1_SHORT)
# if defined(OPENRCT2_BRANCH) && defined(OPENRCT2_COMMIT_SHA1_SHORT)
OPENRCT2_COMMIT_SHA1_SHORT " on " OPENRCT2_BRANCH
#elif defined(OPENRCT2_COMMIT_SHA1_SHORT)
# elif defined(OPENRCT2_COMMIT_SHA1_SHORT)
OPENRCT2_COMMIT_SHA1_SHORT
#elif defined(OPENRCT2_BRANCH)
# elif defined(OPENRCT2_BRANCH)
OPENRCT2_BRANCH
#endif
#ifndef NDEBUG
# endif
# ifndef NDEBUG
", DEBUG"
#endif
# endif
")"
#endif
#ifdef OPENRCT2_BUILD_SERVER