UTC coverage for MathUtils,Matrix,Uint16Pair,PropertyTypes
[platform/core/uifw/dali-core.git] / dali / public-api / math / math-utils.h
index 0dd5056..9c6db4a 100644 (file)
@@ -35,7 +35,7 @@ namespace Dali
  */
 inline unsigned int NextPowerOfTwo( unsigned int i )
 {
-  DALI_ASSERT_DEBUG(i <= 1u << (sizeof(unsigned) * 8 - 1) && "Return type cannot represent the next power of two greater than the argument.");
+  DALI_ASSERT_ALWAYS(i <= 1u << (sizeof(unsigned) * 8 - 1) && "Return type cannot represent the next power of two greater than the argument.");
   if(i==0u)
   {
     return 1u;