summaryrefslogtreecommitdiff
path: root/src/node_zlib.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_zlib.cc')
-rw-r--r--src/node_zlib.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/node_zlib.cc b/src/node_zlib.cc
index 2214f1cd1e..bad7e7e82b 100644
--- a/src/node_zlib.cc
+++ b/src/node_zlib.cc
@@ -50,6 +50,8 @@ using v8::Number;
using v8::Object;
using v8::Value;
+namespace {
+
enum node_zlib_mode {
NONE,
DEFLATE,
@@ -693,6 +695,7 @@ void InitZlib(Local<Object> target,
FIXED_ONE_BYTE_STRING(env->isolate(), ZLIB_VERSION));
}
+} // anonymous namespace
} // namespace node
NODE_MODULE_CONTEXT_AWARE_BUILTIN(zlib, node::InitZlib)