mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 09:19:18 +02:00
reformat: remove redundant 'inline' specifier
This commit is contained in:
@@ -25,9 +25,9 @@ struct dictionary_source {
|
||||
dictionary_source() = default;
|
||||
dictionary_source( std::string const &Input );
|
||||
// methods
|
||||
inline void insert( std::string const &Key, double const Value ) { floats.emplace_back( Key, Value ); }
|
||||
inline void insert( std::string const &Key, int const Value ) { integers.emplace_back( Key, Value ); }
|
||||
inline void insert( std::string const &Key, bool const Value ) { bools.emplace_back( Key, Value ); }
|
||||
inline void insert( std::string const &Key, std::string const Value ) { strings.emplace_back( Key, Value ); }
|
||||
inline void insert( std::string const &Key, std::vector<glm::vec2> const Value ) { vec2_lists.emplace_back( Key, Value ); }
|
||||
void insert( std::string const &Key, double const Value ) { floats.emplace_back( Key, Value ); }
|
||||
void insert( std::string const &Key, int const Value ) { integers.emplace_back( Key, Value ); }
|
||||
void insert( std::string const &Key, bool const Value ) { bools.emplace_back( Key, Value ); }
|
||||
void insert( std::string const &Key, std::string const Value ) { strings.emplace_back( Key, Value ); }
|
||||
void insert( std::string const &Key, std::vector<glm::vec2> const Value ) { vec2_lists.emplace_back( Key, Value ); }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user