summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-08-01 12:50:48 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-08-01 12:50:48 +0200
commit3ceb108a64ce7f5a05d3a20241822416e247dbf8 (patch)
tree8efa66fcd0440f81037801f16bef42bb170bd57e /config
parentb3cff606d0314b6815a7800f263aa47aad99d5f4 (diff)
Use template keyword when calling templated method.
Diffstat (limited to 'config')
-rw-r--r--config/src/vespa/config/subscription/confighandle.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/src/vespa/config/subscription/confighandle.hpp b/config/src/vespa/config/subscription/confighandle.hpp
index f79944f153a..df4f01d0b40 100644
--- a/config/src/vespa/config/subscription/confighandle.hpp
+++ b/config/src/vespa/config/subscription/confighandle.hpp
@@ -13,7 +13,7 @@ template <typename ConfigType>
std::unique_ptr<ConfigType>
ConfigHandle<ConfigType>::getConfig() const
{
- return _subscription->getConfig().newInstance<ConfigType>();
+ return _subscription->getConfig().template newInstance<ConfigType>();
}
template <typename ConfigType>