[devel_3.0_main] Cherry-pick Beautification of source-code. 80383
[platform/framework/native/appfw.git] / src / base / FBaseShort.cpp
index 8740a9a..d4e2fd9 100644 (file)
@@ -19,7 +19,6 @@
  * @brief              This is the implementation file for Short class.
  * @see                        Number
  */
-
 #include <wchar.h>
 #include <limits.h>
 #include <errno.h>
@@ -72,7 +71,7 @@ Short::CompareTo(const Short& value) const
 bool
 Short::Equals(const Object& obj) const
 {
-       const Short* pOther = dynamic_cast <const Short*>(&obj);
+       const Short* pOther = dynamic_cast< const Short* >(&obj);
        if (pOther == null)
        {
                return false;
@@ -90,13 +89,13 @@ Short::Equals(short value) const
 int
 Short::GetHashCode(void) const
 {
-       return static_cast<int> (value);
+       return static_cast< int >(value);
 }
 
 int
 Short::GetHashCode(short val)
 {
-       return static_cast<int> (val);
+       return static_cast< int >(val);
 }
 
 result
@@ -218,7 +217,7 @@ Short::Parse(const String& s, int radix, short& ret)
 char
 Short::ToChar(void) const
 {
-       return static_cast<char> (value);
+       return static_cast< char >(value);
 }
 
 short
@@ -230,31 +229,31 @@ Short::ToShort(void) const
 int
 Short::ToInt(void) const
 {
-       return static_cast<int> (value);
+       return static_cast< int >(value);
 }
 
 long
 Short::ToLong(void) const
 {
-       return static_cast<long> (value);
+       return static_cast< long >(value);
 }
 
 long long
 Short::ToLongLong(void) const
 {
-       return static_cast<long long> (value);
+       return static_cast< long long >(value);
 }
 
 float
 Short::ToFloat(void) const
 {
-       return static_cast<float> (value);
+       return static_cast< float >(value);
 }
 
 double
 Short::ToDouble(void) const
 {
-       return static_cast<double> (value);
+       return static_cast< double >(value);
 }
 
 String