Fixed formatting
This commit is contained in:
@@ -336,8 +336,8 @@ bool translation_unit_visitor::VisitCXXMethodDecl(clang::CXXMethodDecl *m)
|
||||
|
||||
set_unique_id(m->getID(), m_ptr->id()); // This is probably not necessary?
|
||||
|
||||
LOG_TRACE("Set id {} --> {} for method name {} [{}]", m->getID(), m_ptr->id(),
|
||||
method_full_name, m->isThisDeclarationADefinition());
|
||||
LOG_TRACE("Set id {} --> {} for method name {} [{}]", m->getID(),
|
||||
m_ptr->id(), method_full_name, m->isThisDeclarationADefinition());
|
||||
|
||||
context().update(m);
|
||||
|
||||
|
||||
@@ -82,19 +82,26 @@ template <typename T, typename... Ts> constexpr bool has_type() noexcept
|
||||
return (std::is_same_v<T, Ts> || ... || false);
|
||||
}
|
||||
|
||||
struct Public { };
|
||||
struct Public {
|
||||
};
|
||||
|
||||
struct Protected { };
|
||||
struct Protected {
|
||||
};
|
||||
|
||||
struct Private { };
|
||||
struct Private {
|
||||
};
|
||||
|
||||
struct Abstract { };
|
||||
struct Abstract {
|
||||
};
|
||||
|
||||
struct Static { };
|
||||
struct Static {
|
||||
};
|
||||
|
||||
struct Const { };
|
||||
struct Const {
|
||||
};
|
||||
|
||||
struct Default { };
|
||||
struct Default {
|
||||
};
|
||||
|
||||
struct HasCallWithResultMatcher : ContainsMatcher {
|
||||
HasCallWithResultMatcher(
|
||||
|
||||
Reference in New Issue
Block a user