Merge "prevent issue fixes" into tizen_2.2
[platform/framework/native/appfw.git] / inc / FBaseInt8.h
index 7360927..111c893 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -198,6 +197,13 @@ public:
         *      - Sign:
         *              '-'
         * @endcode
+        * @remarks             This method has portability issue. @n
+        *                              When the specified string is nagative number in the ARM architecture, type casting is needed like following code.
+        * @code
+        *      char ret;
+        *      Int8::Decode(L"-0X20", ret);
+        *      SomeOutputFunction(static_cast< signed char >(ret));
+        * @endcode
         */
        static result Decode(const String& s, char& ret);