Browse Source

Maybe fix arch build

6.0.7
Jon Evans 5 years ago
parent
commit
28909c1a72
  1. 1
      common/settings/json_settings.cpp

1
common/settings/json_settings.cpp

@ -522,6 +522,7 @@ OPT<ValueType> JSON_SETTINGS::Get( const std::string& aPath ) const
template OPT<bool> JSON_SETTINGS::Get<bool>( const std::string& aPath ) const;
template OPT<double> JSON_SETTINGS::Get<double>( const std::string& aPath ) const;
template OPT<float> JSON_SETTINGS::Get<float>( const std::string& aPath ) const;
template OPT<int> JSON_SETTINGS::Get<int>( const std::string& aPath ) const;
template OPT<unsigned int> JSON_SETTINGS::Get<unsigned int>( const std::string& aPath ) const;
template OPT<unsigned long long> JSON_SETTINGS::Get<unsigned long long>( const std::string& aPath ) const;
template OPT<std::string> JSON_SETTINGS::Get<std::string>( const std::string& aPath ) const;

Loading…
Cancel
Save