From 2e72c6c68b751c08fab997bcd47f9271b0375ebe Mon Sep 17 00:00:00 2001 From: "Ruben S. Montero" Date: Fri, 8 Feb 2013 21:51:30 +0100 Subject: [PATCH] feature #1483: Inline hints for simple util functions --- include/Util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/Util.h b/include/Util.h index be18222f1a..a8876ba16d 100644 --- a/include/Util.h +++ b/include/Util.h @@ -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_ */