summaryrefslogtreecommitdiff
path: root/src/Util.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Util.hh')
-rw-r--r--src/Util.hh12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/Util.hh b/src/Util.hh
index 2a40308d..a0acd4cd 100644
--- a/src/Util.hh
+++ b/src/Util.hh
@@ -101,11 +101,9 @@ struct PointerAssassin {
std::string itostring(unsigned long i);
std::string itostring(long i);
-inline std::string itostring(unsigned int i) {
- return itostring((unsigned long) i);
-}
-inline std::string itostring(int i) {
- return itostring((long) i);
-}
-
+inline std::string itostring(unsigned int i)
+ { return itostring((unsigned long) i); }
+inline std::string itostring(int i)
+ { return itostring((long) i); }
+
#endif