From 8f9a5b76761885e908df60af1d0a9d3146b7689c Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 25 Aug 2009 15:25:56 +0200 Subject: move to_string() helper to abrtlib.h Signed-off-by: Denys Vlasenko --- src/Daemon/CommLayerServer.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/Daemon/CommLayerServer.h') diff --git a/src/Daemon/CommLayerServer.h b/src/Daemon/CommLayerServer.h index afc9ecf..b8ed7e1 100644 --- a/src/Daemon/CommLayerServer.h +++ b/src/Daemon/CommLayerServer.h @@ -9,17 +9,6 @@ #include "Observer.h" #include "CrashTypes.h" -/* just a helper function */ -template< class T > -std::string -to_string( T x ) -{ - std::ostringstream o; - o << x; - return o.str(); -} - - class CCommLayerServer { protected: CObserver *m_pObserver; -- cgit