about summary refs log tree commit homepage
path: root/ext/unicorn_http/global_variables.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/unicorn_http/global_variables.h')
-rw-r--r--ext/unicorn_http/global_variables.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/unicorn_http/global_variables.h b/ext/unicorn_http/global_variables.h
index 3437ee2..1383ed4 100644
--- a/ext/unicorn_http/global_variables.h
+++ b/ext/unicorn_http/global_variables.h
@@ -3,7 +3,6 @@
 static VALUE mUnicorn;
 static VALUE cHttpParser;
 static VALUE eHttpParserError;
-static VALUE sym_http_body;
 
 static VALUE g_rack_url_scheme;
 static VALUE g_request_method;
@@ -82,7 +81,6 @@ void init_globals(void)
   eHttpParserError =
          rb_define_class_under(mUnicorn, "HttpParserError", rb_eIOError);
   cHttpParser = rb_define_class_under(mUnicorn, "HttpParser", rb_cObject);
-  sym_http_body = ID2SYM(rb_intern("http_body"));
 }
 
 #undef DEF_GLOBAL