[Base] Hopefully fix Clang template inheritance error

This commit is contained in:
Triang3l 2020-12-31 16:46:25 +03:00
parent ea9ee0d4ba
commit 86ba17847b
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ void ConfigVar<T>::SetGameConfigValue(T val) {
}
template <class T>
void ConfigVar<T>::ResetConfigValueToDefault() {
SetConfigValue(default_value_);
SetConfigValue(this->default_value_);
}
// CVars can be initialized before these, thus initialized on-demand using new.