]> git.mxchange.org Git - simgear.git/commitdiff
Fix for clang/template dependent name lookup.
authorThomas Geymayer <tomgey@gmail.com>
Fri, 30 May 2014 21:57:55 +0000 (23:57 +0200)
committerThomas Geymayer <tomgey@gmail.com>
Fri, 30 May 2014 21:57:55 +0000 (23:57 +0200)
Thanks to James & Nicholas...

simgear/nasal/cppbind/NasalHash.hxx

index af3b8faeb76de054e8800f24d224957b0b581194..a800e5badb20cf202271bafc49e79d4e76b6f4c7 100644 (file)
@@ -200,7 +200,7 @@ namespace nasal
             if( !_hash || naIsNil(_key) )
               return T();
 
-            return _hash->get<T>(_key);
+            return _hash->template get<T>(_key);
           }
 
         private: