From: Seoyeon Kim Date: Tue, 21 Mar 2017 10:26:00 +0000 (+0900) Subject: [Tizen] Add whitespace between the string literal and the macro X-Git-Tag: accepted/tizen/common/20170323.154207~1 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=commitdiff_plain;h=fdc3c8f5c4603c276589cae53ab6003ccdb19ba6 [Tizen] Add whitespace between the string literal and the macro - The C++11 "user-defined literals" feature allows custom suffixes to be added to literals. This means that code relying on string concatenation of string literals and macros might fail to compile. - To fix the code to compile in C++11 add whitespace between the string literal and the macro. Change-Id: I09ae5b698fbb59f55120e4b26f5d1f97eeb82130 Signed-off-by: Seoyeon Kim --- diff --git a/plugins/dali-feedback.cpp b/plugins/dali-feedback.cpp index 248aa36..99fb1be 100644 --- a/plugins/dali-feedback.cpp +++ b/plugins/dali-feedback.cpp @@ -29,7 +29,7 @@ #include -#define DEBUG_PRINTF(fmt, arg...) LOGD(" "fmt, ##arg) +#define DEBUG_PRINTF(fmt, arg...) LOGD(" " fmt, ##arg) using std::string; using namespace Dali;