From 77422dec25d3e05109db74af9496beb9729cfabb Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sun, 6 Jan 2013 09:15:20 -0600 Subject: [PATCH] better qualifies subclass typedefs --- test/processors/hybi07.cpp | 2 +- test/processors/hybi08.cpp | 2 +- test/processors/hybi13.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/processors/hybi07.cpp b/test/processors/hybi07.cpp index 34ba1f84b9..7f847a2a05 100644 --- a/test/processors/hybi07.cpp +++ b/test/processors/hybi07.cpp @@ -54,7 +54,7 @@ struct stub_config { /// permessage_compress_config struct permessage_compress_config { - typedef request_type request_type; + typedef stub_config::request_type request_type; }; typedef websocketpp::extensions::permessage_compress::disabled diff --git a/test/processors/hybi08.cpp b/test/processors/hybi08.cpp index 81ece741fa..0aedaa326e 100644 --- a/test/processors/hybi08.cpp +++ b/test/processors/hybi08.cpp @@ -54,7 +54,7 @@ struct stub_config { /// permessage_compress_config struct permessage_compress_config { - typedef request_type request_type; + typedef stub_config::request_type request_type; }; typedef websocketpp::extensions::permessage_compress::disabled diff --git a/test/processors/hybi13.cpp b/test/processors/hybi13.cpp index bcaa1b5619..c5dd6c9f11 100644 --- a/test/processors/hybi13.cpp +++ b/test/processors/hybi13.cpp @@ -51,7 +51,7 @@ struct stub_config { con_msg_manager_type; struct permessage_compress_config { - typedef request_type request_type; + typedef stub_config::request_type request_type; }; typedef websocketpp::extensions::permessage_compress::disabled @@ -70,7 +70,7 @@ struct stub_config_ext { con_msg_manager_type; struct permessage_compress_config { - typedef request_type request_type; + typedef stub_config_ext::request_type request_type; }; typedef websocketpp::extensions::permessage_compress::enabled