Browse Source

[master] fixed a build error due to #997: be more specific about template parameter in the test code

JINMEI Tatuya 14 years ago
parent
commit
f3813c74f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/acl/tests/acl_test.cc

+ 1 - 1
src/lib/acl/tests/acl_test.cc

@@ -85,7 +85,7 @@ private:
 class TestACL : public ACL<Log> {
 public:
     TestACL() :
-        ACL(DROP)
+        ACL<Log>(DROP)
     {}
     // Check the stored default action there
     void checkDefaultAction(BasicAction ac) {