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