mdot

Files at this revision

API Documentation at this revision

Comitter:
tesla_xudong
Date:
Thu Feb 28 00:22:20 2019 +0000
Parent:
1:2bb500b021e2
Commit message:
Xc

Changed in this revision

picojson.h Show annotated file Show diff for this revision Revisions of this file
--- a/picojson.h	Tue Sep 06 16:49:40 2011 +0000
+++ b/picojson.h	Thu Feb 28 00:22:20 2019 +0000
@@ -215,7 +215,7 @@
 
   inline const value& value::get(const std::string& key) const {
     static value s_null;
-    assert(is<object>());
+    //assert(is<object>());
     object::const_iterator i = object_->find(key);
     return i != object_->end() ? i->second : s_null;
   }
@@ -238,6 +238,7 @@
       __assume(0);
 #endif
     }
+    
   }
   
   template <typename Iter> void copy(const std::string& s, Iter oi) {