Skip to content

Commit 55ebf86

Browse files
committed
Change handler definition to match requirements
1 parent 12f6a71 commit 55ebf86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

http/test/v2/server/units/dynamic_handler_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2014 Google, Inc.
12
// Copyright 2014 (c) Dean Michael Berris <[email protected]>
23
// Distributed under the Boost Software License, Version 1.0.
34
// (See accompanying file LICENSE_1_0.txt or copy at
@@ -11,7 +12,7 @@ namespace http = network::http::v2;
1112

1213
class CustomRequestHandler : public http::request_handler_base {
1314
public:
14-
void register_handler(boost::string_ref path, handler some_handler) override {
15+
void register_handler(boost::string_ref, handler) override {
1516
// Do nothing here.
1617
};
1718
~CustomRequestHandler() {}

0 commit comments

Comments
 (0)