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

Fix namespace compilation errors

parent b855c3f7
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "../rapidjson.h" #include "../rapidjson.h"
namespace rapidjson { RAPIDJSON_NAMESPACE_BEGIN
namespace internal { namespace internal {
class BigInteger { class BigInteger {
...@@ -285,6 +285,6 @@ private: ...@@ -285,6 +285,6 @@ private:
}; };
} // namespace internal } // namespace internal
} // namespace rapidjson RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_BIGINTEGER_H_ #endif // RAPIDJSON_BIGINTEGER_H_
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#endif #endif
#endif #endif
namespace rapidjson { RAPIDJSON_NAMESPACE_BEGIN
namespace internal { namespace internal {
#ifdef __GNUC__ #ifdef __GNUC__
...@@ -263,6 +263,6 @@ RAPIDJSON_DIAG_POP ...@@ -263,6 +263,6 @@ RAPIDJSON_DIAG_POP
#endif #endif
} // namespace internal } // namespace internal
} // namespace rapidjson RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_DIYFP_H_ #endif // RAPIDJSON_DIYFP_H_
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "../rapidjson.h" #include "../rapidjson.h"
namespace rapidjson { RAPIDJSON_NAMESPACE_BEGIN
namespace internal { namespace internal {
class Double { class Double {
...@@ -85,6 +85,6 @@ private: ...@@ -85,6 +85,6 @@ private:
}; };
} // namespace internal } // namespace internal
} // namespace rapidjson RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_IEEE754_ #endif // RAPIDJSON_IEEE754_
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include "diyfp.h" #include "diyfp.h"
#include "pow10.h" #include "pow10.h"
namespace rapidjson { RAPIDJSON_NAMESPACE_BEGIN
namespace internal { namespace internal {
inline double FastPath(double significand, int exp) { inline double FastPath(double significand, int exp) {
...@@ -280,6 +280,6 @@ inline double StrtodFullPrecision(double d, int p, const char* decimals, size_t ...@@ -280,6 +280,6 @@ inline double StrtodFullPrecision(double d, int p, const char* decimals, size_t
} }
} // namespace internal } // namespace internal
} // namespace rapidjson RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_STRTOD_ #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