Commit 0a17e1a6 authored by Milo Yip's avatar Milo Yip

Fix namespace compilation errors

parent b855c3f7
......@@ -23,7 +23,7 @@
#include "../rapidjson.h"
namespace rapidjson {
RAPIDJSON_NAMESPACE_BEGIN
namespace internal {
class BigInteger {
......@@ -285,6 +285,6 @@ private:
};
} // namespace internal
} // namespace rapidjson
RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_BIGINTEGER_H_
......@@ -32,7 +32,7 @@
#endif
#endif
namespace rapidjson {
RAPIDJSON_NAMESPACE_BEGIN
namespace internal {
#ifdef __GNUC__
......@@ -263,6 +263,6 @@ RAPIDJSON_DIAG_POP
#endif
} // namespace internal
} // namespace rapidjson
RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_DIYFP_H_
......@@ -23,7 +23,7 @@
#include "../rapidjson.h"
namespace rapidjson {
RAPIDJSON_NAMESPACE_BEGIN
namespace internal {
class Double {
......@@ -85,6 +85,6 @@ private:
};
} // namespace internal
} // namespace rapidjson
RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_IEEE754_
......@@ -27,7 +27,7 @@
#include "diyfp.h"
#include "pow10.h"
namespace rapidjson {
RAPIDJSON_NAMESPACE_BEGIN
namespace internal {
inline double FastPath(double significand, int exp) {
......@@ -280,6 +280,6 @@ inline double StrtodFullPrecision(double d, int p, const char* decimals, size_t
}
} // namespace internal
} // namespace rapidjson
RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_STRTOD_
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment