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