Fixed formatting
This commit is contained in:
@@ -171,10 +171,9 @@ bool translation_unit_visitor::VisitEnumDecl(clang::EnumDecl *enm)
|
||||
}
|
||||
}
|
||||
|
||||
if(!id_opt) {
|
||||
if (!id_opt) {
|
||||
LOG_WARN("Unknown parent for enum {}", qualified_name);
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
auto parent_class = diagram_.get_class(*id_opt);
|
||||
|
||||
@@ -177,7 +177,7 @@ void call_expression_context::enter_lambda_expression(std::int64_t id)
|
||||
|
||||
void call_expression_context::leave_lambda_expression()
|
||||
{
|
||||
if(current_lambda_caller_id_.empty())
|
||||
if (current_lambda_caller_id_.empty())
|
||||
return;
|
||||
|
||||
LOG_DBG("Leaving current lambda expression id to {}",
|
||||
|
||||
@@ -64,8 +64,6 @@ public:
|
||||
bool VisitFunctionTemplateDecl(
|
||||
clang::FunctionTemplateDecl *function_declaration);
|
||||
|
||||
|
||||
|
||||
clanguml::sequence_diagram::model::diagram &diagram();
|
||||
|
||||
const clanguml::sequence_diagram::model::diagram &diagram() const;
|
||||
@@ -206,8 +204,7 @@ private:
|
||||
bool is_smart_pointer(const clang::TemplateDecl *primary_template) const;
|
||||
|
||||
bool is_callee_valid_template_specialization(
|
||||
const clang::CXXDependentScopeMemberExpr *dependent_member_expr)
|
||||
const;
|
||||
const clang::CXXDependentScopeMemberExpr *dependent_member_expr) const;
|
||||
|
||||
bool process_operator_call_expression(model::message &m,
|
||||
const clang::CXXOperatorCallExpr *operator_call_expr);
|
||||
|
||||
Reference in New Issue
Block a user