Use new shorten_stl_types in scope tracker
authorChristian Herdtweck <christian.herdtweck@intra2net.com>
Tue, 24 Jan 2017 09:54:42 +0000 (10:54 +0100)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 23 Mar 2017 09:21:27 +0000 (10:21 +0100)
src/tracefunc.cpp

index cbdadea..4e6282a 100644 (file)
@@ -33,6 +33,8 @@ on this file might be covered by the GNU General Public License.
 #include <sstream>
 #include <boost/thread/tss.hpp>
 
+#include <stringfunc.hxx>
+
 namespace I2n
 {
 namespace Tracer
@@ -140,7 +142,7 @@ ScopeTracker::ScopeTracker(
       }
       else
       {
-         ostr << Location.FunctionName;
+         ostr << shorten_stl_types(Location.FunctionName);
          if (FuncDepth>0)
          {
             ostr << "#" << FuncDepth+1;