Make entire implementation namespaces anonymous

This commit is contained in:
John Keiser
2020-07-24 08:09:34 -07:00
parent 65148b123b
commit c7fa9b5fe8
55 changed files with 123 additions and 229 deletions
+2 -4
View File
@@ -1,9 +1,8 @@
#include "fallback/begin_implementation.h"
#include "fallback/dom_parser_implementation.h"
namespace simdjson {
namespace SIMDJSON_IMPLEMENTATION {
namespace {
namespace SIMDJSON_IMPLEMENTATION {
WARN_UNUSED error_code implementation::create_dom_parser_implementation(
size_t capacity,
@@ -17,8 +16,7 @@ WARN_UNUSED error_code implementation::create_dom_parser_implementation(
return SUCCESS;
}
} // namespace {
} // namespace SIMDJSON_IMPLEMENTATION
} // namespace simdjson
} // namespace {
#include "fallback/end_implementation.h"