From 927c9ed9974ba4adb3d606f57f9b27208d46c0b1 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Thu, 10 Apr 2014 23:14:29 +0200 Subject: [PATCH] pet.cc: add space between literal and identifier This is required by C++11 and recent versions of clang require compilation with -std=c++11. Signed-off-by: Sven Verdoolaege --- pet.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pet.cc b/pet.cc index 98c01b9..a5d584d 100644 --- a/pet.cc +++ b/pet.cc @@ -682,7 +682,8 @@ struct PetASTConsumer : public ASTConsumer { } }; -static const char *ResourceDir = CLANG_PREFIX"/lib/clang/"CLANG_VERSION_STRING; +static const char *ResourceDir = + CLANG_PREFIX "/lib/clang/" CLANG_VERSION_STRING; static const char *implicit_functions[] = { "min", "max", "intMod", "intCeil", "intFloor", "ceild", "floord" -- 2.11.4.GIT