Remove full_name() function

Doesn't work for templates.
This commit is contained in:
Jonathan Müller 2017-04-13 11:35:22 +02:00
commit 6894a025ca
3 changed files with 19 additions and 24 deletions

View file

@ -162,11 +162,6 @@ namespace cppast
/// \returns Whether or not the given entity is "friended",
/// that is, its declaration exists as part of a [cppast::cpp_friend]() declaration.
bool is_friended(const cpp_entity& e) noexcept;
/// \returns The full name of the [cppast::cpp_entity](), with all scopes.
/// \notes Enitites without a name ([cppast::cpp_using_declaration]() etc.) do not have a full name either.
/// \notes For (template) parameters the full name is the name itself.
std::string full_name(const cpp_entity& e);
} // namespace cppast
#endif // CPPAST_CPP_ENTITY_HPP_INCLUDED