1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-24 02:03:52 +03:00

Revert "feature #1483: Inline hints for simple util functions"

This reverts commit 2e72c6c68b751c08fab997bcd47f9271b0375ebe.
This commit is contained in:
Ruben S. Montero 2013-02-08 21:58:34 +01:00
parent 2e72c6c68b
commit d920864c6a

View File

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