Skip to content
Snippets Groups Projects
Commit 386d5c3e authored by Christoph Schwarzmeier's avatar Christoph Schwarzmeier
Browse files

Change reference to const reference in stringToNum

parent e48f00a3
No related merge requests found
...@@ -25,15 +25,15 @@ ...@@ -25,15 +25,15 @@
namespace walberla { namespace walberla {
template<typename S> template<typename S>
inline S stringToNum( std::string & t ); inline S stringToNum( const std::string & t );
template <> inline float stringToNum( std::string & t ) { return std::stof(t); } template <> inline float stringToNum( const std::string & t ) { return std::stof(t); }
template <> inline double stringToNum( std::string & t ) { return std::stod(t); } template <> inline double stringToNum( const std::string & t ) { return std::stod(t); }
template <> inline long double stringToNum( std::string & t ) { return std::stold(t); } template <> inline long double stringToNum( const std::string & t ) { return std::stold(t); }
template <> inline int stringToNum( std::string & t ) { return std::stoi(t); } template <> inline int stringToNum( const std::string & t ) { return std::stoi(t); }
template <> inline long stringToNum( std::string & t ) { return std::stol(t); } template <> inline long stringToNum( const std::string & t ) { return std::stol(t); }
template <> inline long long stringToNum( std::string & t ) { return std::stoll(t); } template <> inline long long stringToNum( const std::string & t ) { return std::stoll(t); }
template <> inline unsigned long stringToNum( std::string & t ) { return std::stoul(t); } template <> inline unsigned long stringToNum( const std::string & t ) { return std::stoul(t); }
template <> inline unsigned long long stringToNum( std::string & t ) { return std::stoull(t); } template <> inline unsigned long long stringToNum( const std::string & t ) { return std::stoull(t); }
} // namespace walberla } // namespace walberla
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment