summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/server/http_connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server/http_connection.h b/net/server/http_connection.h
index f154bc3..83348b7 100644
--- a/net/server/http_connection.h
+++ b/net/server/http_connection.h
@@ -30,7 +30,7 @@ class HttpConnection {
void Shift(int num_bytes);
const std::string& recv_data() const { return recv_data_; }
- const int id() const { return id_; }
+ int id() const { return id_; }
private:
friend class HttpServer;