Browse Source

removed unnecessary const's from declarations.
trivial cleanup, skipping review.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2164 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya 15 years ago
parent
commit
994abd9573
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/auth/asio_link.h

+ 2 - 2
src/bin/auth/asio_link.h

@@ -24,8 +24,8 @@ struct IOServiceImpl;
 
 class IOService {
 public:
-    IOService(AuthSrv* auth_server, const char* port,
-              const bool use_ipv4, const bool use_ipv6);
+    IOService(AuthSrv* auth_server, const char* port, bool use_ipv4,
+              bool use_ipv6);
     ~IOService();
     void run();
     void stop();