Displaying 1 result from an estimated 1 matches for "_global__n".
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...#39;);
if (++t == last)
return first;
}
if (static_cast<size_t>(last - t) >= n)
{
- typename C::String r(t, n);
+ string_ref r(t, t + n);
if (r.substr(0, 10) == "_GLOBAL__N")
- db.names.push_back("(anonymous namespace)");
+ db.names.push_back(db.template make<name_type>("(anonymous namespace)"));
else
- db.names.push_back(std::move(r));
+ db.name...