convert JSONCPP_STRING etc from macros to typedefs
diff --git a/include/json/assertions.h b/include/json/assertions.h
index b722548..20716b0 100644
--- a/include/json/assertions.h
+++ b/include/json/assertions.h
@@ -29,7 +29,7 @@
#define JSON_FAIL_MESSAGE(message) \
{ \
- JSONCPP_OSTRINGSTREAM oss; \
+ OStringStream oss; \
oss << message; \
Json::throwLogicError(oss.str()); \
abort(); \
@@ -43,7 +43,7 @@
// release builds we abort, for a core-dump or debugger.
#define JSON_FAIL_MESSAGE(message) \
{ \
- JSONCPP_OSTRINGSTREAM oss; \
+ OStringStream oss; \
oss << message; \
assert(false && oss.str().c_str()); \
abort(); \