Add whitespace between the string literal and the macro 99/120099/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 21 Mar 2017 10:26:00 +0000 (19:26 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 21 Mar 2017 10:32:24 +0000 (19:32 +0900)
- 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 <seoyeon2.kim@samsung.com>
plugins/dali-feedback.cpp

index 1be8589..14ae644 100644 (file)
@@ -29,7 +29,7 @@
 
 #include <dlog.h>
 
-#define DEBUG_PRINTF(fmt, arg...)  LOGD(" "fmt, ##arg)
+#define DEBUG_PRINTF(fmt, arg...)  LOGD(" " fmt, ##arg)
 
 using std::string;
 using namespace Dali;