[beast] SFI: fixed method resolution for unknown template base class



commit 7b63939eb6e22f3bf2a99719d8b8443236f4476c
Author: Tim Janik <timj gnu org>
Date:   Mon Oct 22 01:37:26 2012 +0200

    SFI: fixed method resolution for unknown template base class

 sfi/sfidl-parser.hh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/sfi/sfidl-parser.hh b/sfi/sfidl-parser.hh
index 7269cc0..ba3b3e7 100644
--- a/sfi/sfidl-parser.hh
+++ b/sfi/sfidl-parser.hh
@@ -31,7 +31,7 @@ private:
 
 public:
   const Value& get(const Key& k) const {
-    typename std::map<Key,Value>::const_iterator i = find(k);
+    typename std::map<Key,Value>::const_iterator i = this->find(k);
     if (i != this->end())
       return i->second;
     else



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]