1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

feature #1483: Inline hints for simple util functions

This commit is contained in:
Ruben S. Montero 2013-02-08 21:51:30 +01:00
parent 4e41c91022
commit 2e72c6c68b

View File

@ -21,13 +21,13 @@
namespace one_util
{
std::string& toupper(std::string& st);
inline std::string& toupper(std::string& st);
std::string& tolower(std::string& st);
inline std::string& tolower(std::string& st);
std::string log_time(time_t the_time);
std::string log_time();
inline std::string log_time();
};
#endif /* UTIL_H_ */