Fix -Werror=old-style-cast error 75/132675/1
authorminho.sun <minho.sun@samsung.com>
Wed, 7 Jun 2017 06:24:04 +0000 (15:24 +0900)
committerminho.sun <minho.sun@samsung.com>
Wed, 7 Jun 2017 06:24:04 +0000 (15:24 +0900)
Fix -Werror=old-style-cast error

Change-Id: Iebedc86627f2a26f5893657e423ab0db794d6a15
Signed-off-by: minho.sun <minho.sun@samsung.com>
adaptors/tizen/accessibility-adaptor-impl-tizen.cpp

index 588cfae..65ba859 100644 (file)
@@ -52,7 +52,7 @@ bool GetEnabledVConf()
     vconf_get_bool( VCONFKEY_SETAPPL_ACCESSIBILITY_TTS, &isEnabled );
   }
 
-  return (bool)isEnabled;
+  return static_cast<bool>(isEnabled);
 }
 
 #if defined(DEBUG_ENABLED)