ostream_helpers.cc
Go to the documentation of this file.
2 
3 #include <regex>
4 #include <string>
5 
6 namespace {
7  std::regex const re_std_prefix{"std::"};
8 }
9 
12  stripped_typename(std::string const& fullName)
13  {
14  // Remove 'std::' from fullName
15  return std::regex_replace(fullName, re_std_prefix, "");
16  }
17 }
std::string string
Definition: nybbler.cc:12
std::string stripped_typename(std::string const &fullName)