Merging primitive services(TM, SSM and NM) from android-api branch.
[contrib/iotivity.git] / build_common / android / compatibility / android_cpp11_compat.cpp
index dedc927..3d27cf9 100644 (file)
@@ -57,6 +57,12 @@ namespace std {
         return os.str();
     }
 
+    std::string to_string(long t) {
+        std::ostringstream os;
+            os << t;
+        return os.str();
+    }
+
     std::string to_string(double t) {
         std::ostringstream os;
             os << t;