From e1abab393b69d052186d799fd6182369f4877214 Mon Sep 17 00:00:00 2001 From: Thomas Geymayer Date: Fri, 30 May 2014 23:57:55 +0200 Subject: [PATCH] Fix for clang/template dependent name lookup. Thanks to James & Nicholas... --- simgear/nasal/cppbind/NasalHash.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/nasal/cppbind/NasalHash.hxx b/simgear/nasal/cppbind/NasalHash.hxx index af3b8fae..a800e5ba 100644 --- a/simgear/nasal/cppbind/NasalHash.hxx +++ b/simgear/nasal/cppbind/NasalHash.hxx @@ -200,7 +200,7 @@ namespace nasal if( !_hash || naIsNil(_key) ) return T(); - return _hash->get(_key); + return _hash->template get(_key); } private: -- 2.39.5