summaryrefslogtreecommitdiffstats
path: root/blimp/net/engine_connection_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'blimp/net/engine_connection_manager.cc')
-rw-r--r--blimp/net/engine_connection_manager.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/blimp/net/engine_connection_manager.cc b/blimp/net/engine_connection_manager.cc
index 549caa3..053508e 100644
--- a/blimp/net/engine_connection_manager.cc
+++ b/blimp/net/engine_connection_manager.cc
@@ -13,7 +13,9 @@ namespace blimp {
EngineConnectionManager::EngineConnectionManager(
ConnectionHandler* connection_handler)
- : connection_handler_(connection_handler) {}
+ : connection_handler_(connection_handler) {
+ DCHECK(connection_handler_);
+}
EngineConnectionManager::~EngineConnectionManager() {}