Skip to content

Commit

Permalink
Fix clang
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed Oct 12, 2018
1 parent 84da8e0 commit 04790d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ArduinoJson/JsonObjectSubscript.hpp
Expand Up @@ -59,12 +59,12 @@ class JsonObjectSubscript

template <typename TValue>
FORCE_INLINE typename JsonVariantAs<TValue>::type as() const {
return get_impl().as<TValue>();
return get_impl().template as<TValue>();
}

template <typename TValue>
FORCE_INLINE bool is() const {
return get_impl().is<TValue>();
return get_impl().template is<TValue>();
}

template <typename TValue>
Expand Down

0 comments on commit 04790d8

Please sign in to comment.