Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-06-12 19:30:37 +0400
committerRyan <ry@tinyclouds.org>2009-06-12 19:30:37 +0400
commit825d7a8be83f2ef8956becad4cd42abb8c2a159b (patch)
treea9adf12e9821fd8326f51f43e6d0394a1abdd22f
parentfd83e1d7d801ad2c9c47127a8bbf38edb3449468 (diff)
Remove unused HTTPConnection destructor
-rw-r--r--src/http.cc6
-rw-r--r--src/http.h1
2 files changed, 0 insertions, 7 deletions
diff --git a/src/http.cc b/src/http.cc
index 03e0d058e21..b77a5dd15cd 100644
--- a/src/http.cc
+++ b/src/http.cc
@@ -295,12 +295,6 @@ HTTPConnection::HTTPConnection (Handle<Object> handle, enum http_parser_type typ
parser_.data = this;
}
-
-HTTPConnection::~HTTPConnection ( )
-{
-}
-
-
Persistent<FunctionTemplate> HTTPServer::constructor_template;
void
diff --git a/src/http.h b/src/http.h
index cfebad33492..f0d46453545 100644
--- a/src/http.h
+++ b/src/http.h
@@ -20,7 +20,6 @@ protected:
HTTPConnection (v8::Handle<v8::Object> handle,
enum http_parser_type type);
- ~HTTPConnection ( );
void OnReceive (const void *buf, size_t len);