mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-08 16:13:56 +02:00
Fix build for GCC.
This commit is contained in:
parent
d8a4ede4b5
commit
20b67ee000
1 changed files with 2 additions and 2 deletions
|
@ -89,11 +89,11 @@ public:
|
|||
|
||||
template <typename T, typename... Args>
|
||||
T &set(Args &&...args) {
|
||||
_impl.set<T>(std::forward<Args>(args)...);
|
||||
_impl.template set<T>(std::forward<Args>(args)...);
|
||||
return get_unchecked<T>();
|
||||
}
|
||||
void clear() {
|
||||
_impl.set<none_type>();
|
||||
_impl.template set<none_type>();
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
|
Loading…
Add table
Reference in a new issue