Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 2:60535e1b4660, committed 2019-02-28
- 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) {