Some STL symbols are defined in inline namespaces. For example,
namespace std { inline namespace __cxx11 { typedef ... string; } }
Currently, this will be std::__cxx11::string; however, std::string is desired.
Inline namespaces are treated as transparent scopes. This
reflects the way they're most commonly used for lookup. Ideally we'd
include them, but at query time it's hard to find all the inline
namespaces to query: the preamble doesn't have a dedicated list.