summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/version.h
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2016-03-20 09:09:38 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2016-03-27 12:38:17 +0200
commit7cc6d85df906f6780fc2a7055938580b4ee51d8a (patch)
treecd50b4dc3b7185e51bd03540add9293aaaf4eb96 /rbutil/rbutilqt/version.h
parentece9303c2bb377f83b773e45ee1f6d630678e5ab (diff)
downloadrockbox-7cc6d85df906f6780fc2a7055938580b4ee51d8a.tar.gz
rockbox-7cc6d85df906f6780fc2a7055938580b4ee51d8a.zip
Fix C++11 compile error with version strings.
C++11 requires a space between literal and identifier. When compiling with Qt 5.6 on OS X C++11 support is automatically enabled, causing an error due to this. Change-Id: Ifbedc894a3cef23fc67ed1da75558e92e44d1077
Diffstat (limited to 'rbutil/rbutilqt/version.h')
-rw-r--r--rbutil/rbutilqt/version.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/version.h b/rbutil/rbutilqt/version.h
index e3e46a932d..a156083f67 100644
--- a/rbutil/rbutilqt/version.h
+++ b/rbutil/rbutilqt/version.h
@@ -40,5 +40,5 @@
40// PUREVERSION should identify the build uniquely. Use version string for now. 40// PUREVERSION should identify the build uniquely. Use version string for now.
41#define PUREVERSION "$Rev$" 41#define PUREVERSION "$Rev$"
42 42
43#define FULLVERSION VERSION" ("PUREVERSION"), built "__DATE__" "__TIME__ 43#define FULLVERSION VERSION " (" PUREVERSION "), built " __DATE__ " " __TIME__
44 44