diff options
Diffstat (limited to 'source/core')
| -rw-r--r-- | source/core/slang-dictionary.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/core/slang-dictionary.h b/source/core/slang-dictionary.h index d35255a8c..b3aa354d2 100644 --- a/source/core/slang-dictionary.h +++ b/source/core/slang-dictionary.h @@ -339,6 +339,7 @@ protected: DictionaryType dict; private: + void init() {} // Base case for recursion template<typename... Args> void init(const T& v, Args... args) { @@ -406,6 +407,8 @@ public: template<typename T> class HashSet : public HashSetBase<T, Dictionary<T, _DummyClass>> { +public: + using HashSetBase<T, Dictionary<T, _DummyClass>>::HashSetBase; }; template<typename TKey, typename TValue> |
