File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -148,32 +148,32 @@ namespace crow
148148
149149 void close ()
150150 {
151- asio:: error_code ec;
151+ error_code ec;
152152 socket_.close (ec);
153153 }
154154
155155 void shutdown_readwrite ()
156156 {
157- asio:: error_code ec;
157+ error_code ec;
158158 socket_.shutdown (asio::socket_base::shutdown_type::shutdown_both, ec);
159159 }
160160
161161 void shutdown_write ()
162162 {
163- asio:: error_code ec;
163+ error_code ec;
164164 socket_.shutdown (asio::socket_base::shutdown_type::shutdown_send, ec);
165165 }
166166
167167 void shutdown_read ()
168168 {
169- asio:: error_code ec;
169+ error_code ec;
170170 socket_.shutdown (asio::socket_base::shutdown_type::shutdown_receive, ec);
171171 }
172172
173173 template <typename F>
174174 void start (F f)
175175 {
176- f (asio:: error_code ());
176+ f (error_code ());
177177 }
178178
179179 stream_protocol::socket socket_;
You can’t perform that action at this time.
0 commit comments