diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-10-29T12·26+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-10-29T12·26+0100 |
commit | 5c28943e8fd19d7eb55865d45d6dc61336aa04e9 (patch) | |
tree | 23027f6e306f2563558643cf5d584394d88429d4 /src/libutil/util.hh | |
parent | 71039becd11f5df4173692508dcb0ad36327c5fa (diff) |
int2String() -> std::to_string()
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index a05a4cb88093..038838820899 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -356,13 +356,6 @@ template<class N> bool string2Int(const string & s, N & n) return str && str.get() == EOF; } -template<class N> string int2String(N n) -{ - std::ostringstream str; - str << n; - return str.str(); -} - /* Return true iff `s' ends in `suffix'. */ bool hasSuffix(const string & s, const string & suffix); |