aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include
diff options
context:
space:
mode:
authorSimon Kågström <simon.kagstrom@netinsight.net>2014-12-09 09:15:40 +0100
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-12-10 17:11:16 +0300
commit09be463452565e35dfb964947b2d01f151fa26e1 (patch)
tree152c2bcfea87e2e1ce3ac1c0ec98931de1c360a6 /platform/linux-generic/include
parentff860ac879483b4a518c3f1e4c9ae35adee678c5 (diff)
linux-generic: Add space to avoid C++11 literal/identifier warning
When building with --std=c++0x or --std=c++11, you will otherwise get this warning: C++11 requires a space between literal and identifier [-Wliteral-suffix] ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "."\ Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Reviewed-by Mike Holmes <Mike.holmes@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/include')
-rw-r--r--platform/linux-generic/include/api/odp_version.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/linux-generic/include/api/odp_version.h b/platform/linux-generic/include/api/odp_version.h
index 41708cad9..b3b345a23 100644
--- a/platform/linux-generic/include/api/odp_version.h
+++ b/platform/linux-generic/include/api/odp_version.h
@@ -56,8 +56,8 @@ extern "C" {
/** @internal API version string */
#define ODP_VERSION_API_STR \
-ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "."\
-ODP_VERSION_TO_STR(ODP_VERSION_API_MAJOR) "."\
+ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "." \
+ODP_VERSION_TO_STR(ODP_VERSION_API_MAJOR) "." \
ODP_VERSION_TO_STR(ODP_VERSION_API_MINOR)
/**