MS Windows - Fix compile error when debug is enabled. 28/222728/2
authorVictor Cebollada <v.cebollada@samsung.com>
Fri, 17 Jan 2020 08:55:41 +0000 (08:55 +0000)
committerVictor Cebollada <v.cebollada@samsung.com>
Fri, 17 Jan 2020 16:23:35 +0000 (16:23 +0000)
* Builds with VCPKG

Change-Id: Idbe5a597fcdfb309e29a729ffba381ffd56b6f27
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
dali-toolkit/internal/controls/flex-container/flex-container-impl.cpp
dali-toolkit/internal/controls/table-view/table-view-impl.cpp

index 485cd597845120d8dd262fcd7f650831462644a0..1488f5e2c6be927e79e2758ebc06cdacc3c5b6f1 100755 (executable)
@@ -38,7 +38,7 @@ namespace
 // currently not called from code so compiler will optimize these away, kept here for future debugging
 
 #define FLEX_CONTAINER_TAG "DALI Toolkit::FlexContainer "
-#define FC_LOG(fmt, args...) Debug::LogMessage(Debug::DebugInfo, FLEX_CONTAINER_TAG fmt, ## args)
+#define FC_LOG(fmt, args,...) Debug::LogMessage(Debug::DebugInfo, FLEX_CONTAINER_TAG fmt, ## args)
 // #define FLEX_CONTAINER_DEBUG 1
 
 #if defined(FLEX_CONTAINER_DEBUG)
index abb9eeaa356113f1a1e8d4854737e3d6e56c2d0d..b4e81c76a9500956a81b3bed86867e76534b23fc 100755 (executable)
@@ -48,7 +48,7 @@ bool FitToChild( Actor actor, Dimension::Type dimension )
 // currently not called from code so compiler will optimize these away, kept here for future debugging
 
 #define TABLEVIEW_TAG "DALI Toolkit::TableView "
-#define TV_LOG(fmt, args...) Debug::LogMessage(Debug::DebugInfo, TABLEVIEW_TAG fmt, ## args)
+#define TV_LOG(fmt, args,...) Debug::LogMessage(Debug::DebugInfo, TABLEVIEW_TAG fmt, ## args)
 //#define TABLEVIEW_DEBUG 1
 
 #if defined(TABLEVIEW_DEBUG)