Unused variables. 93/33193/2
authorFrancisco Santos <f1.santos@samsung.com>
Tue, 6 Jan 2015 14:22:26 +0000 (14:22 +0000)
committerFrancisco Santos <f1.santos@samsung.com>
Wed, 7 Jan 2015 11:21:43 +0000 (11:21 +0000)
Change-Id: I617a32bffd20ce216bf9adcbc98ec3d18ba87147

dali/internal/update/manager/update-manager.cpp
dali/internal/update/render-tasks/scene-graph-render-task.cpp
dali/public-api/common/dali-common.cpp
dali/public-api/signals/connection-tracker.cpp
dali/public-api/signals/functor-delegate.cpp

index 2846281..0a6c8f1 100644 (file)
@@ -110,8 +110,6 @@ namespace SceneGraph
 namespace
 {
 
-const int DEFAULT_CAMERA_INDEX = -1;
-
 void DestroyNodeSet( std::set<Node*>& nodeSet )
 {
   for( std::set<Node*>::iterator iter = nodeSet.begin(); iter != nodeSet.end(); ++iter )
index 7be55e5..d8088ed 100644 (file)
 
 #include <dali/internal/update/render-tasks/scene-graph-render-task-debug.h>
 
-namespace
-{
-const unsigned int NUM_FRAMES_BEFORE_NOTIFY_FINISHED(3);
-const unsigned int COUNTDOWN_COMPLETE(-1);
-} // anonymous namespace
-
 namespace Dali
 {
 namespace Internal
index 25fa096..c6607f7 100644 (file)
@@ -36,7 +36,6 @@
 namespace
 {
 const int MAX_NUM_STACK_FRAMES = 25;
-const size_t C_SYMBOL_LENGTH = 4096;
 }
 
 namespace Dali
index fcc3ab5..9bb019f 100644 (file)
 namespace Dali
 {
 
-namespace
-{
-
-const int INVALID_CALLBACK_INDEX = -1;
-
-} // unnamed namespace
-
-
 ConnectionTracker::ConnectionTracker()
 {
 }
index 32cd1d1..0b1924f 100644 (file)
@@ -32,6 +32,7 @@ namespace
  * If this assert fails, please implement the template specialisation for C functions.
  */
 #if !defined(EMSCRIPTEN)
+void Function() __attribute__((unused));
 void Function() { }
 DALI_COMPILE_TIME_ASSERT( sizeof(void*) == sizeof(&Function) );
 #endif