[devel_3.0_main] Cherry-pick Beautification of source-code. 80383
[platform/framework/native/appfw.git] / src / base / FBaseInteger.cpp
index 8676747..83027a1 100644 (file)
@@ -19,7 +19,6 @@
  * @brief              This is the implementation file for Integer class.
  * @see                        Number
  */
-
 #include <wchar.h>
 #include <limits.h>
 #include <errno.h>
@@ -73,7 +72,7 @@ Integer::CompareTo(const Integer& value) const
 bool
 Integer::Equals(const Object& obj) const
 {
-       const Integer* pOther = dynamic_cast <const Integer*>(&obj);
+       const Integer* pOther = dynamic_cast< const Integer* >(&obj);
        if (pOther == null)
        {
                return false;
@@ -183,13 +182,13 @@ Integer::Parse(const String& s, int radix, int& ret)
 char
 Integer::ToChar(void) const
 {
-       return static_cast<char> (value);
+       return static_cast< char >(value);
 }
 
 short
 Integer::ToShort(void) const
 {
-       return static_cast<short> (value);
+       return static_cast< short >(value);
 }
 
 int
@@ -201,25 +200,25 @@ Integer::ToInt(void) const
 long
 Integer::ToLong(void) const
 {
-       return static_cast<long> (value);
+       return static_cast< long >(value);
 }
 
 long long
 Integer::ToLongLong(void) const
 {
-       return static_cast<long long> (value);
+       return static_cast< long long >(value);
 }
 
 float
 Integer::ToFloat(void) const
 {
-       return static_cast<float> (value);
+       return static_cast< float >(value);
 }
 
 double
 Integer::ToDouble(void) const
 {
-       return static_cast<double> (value);
+       return static_cast< double >(value);
 }
 
 String