Skip to content

Commit

Permalink
clang-format 19.1.1 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Oct 20, 2024
1 parent fbe3840 commit a82f6d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/amici/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ struct LogItem {
)
: severity(severity)
, identifier(identifier)
, message(message){};
, message(message) {};

/** Severity level */
LogSeverity severity = LogSeverity::error;
Expand Down
3 changes: 1 addition & 2 deletions src/solver_cvodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ static_assert(
"AMICI_FIRST_QRHSFUNC_ERR != CV_FIRST_QRHSFUNC_ERR"
);
static_assert(
amici::AMICI_WARNING == CV_WARNING,
"AMICI_WARNING != CV_WARNING"
amici::AMICI_WARNING == CV_WARNING, "AMICI_WARNING != CV_WARNING"
);

/*
Expand Down
3 changes: 1 addition & 2 deletions src/solver_idas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ static_assert(
"AMICI_IDAS_CONSTR_FAIL != IDA_CONSTR_FAIL"
);
static_assert(
amici::AMICI_WARNING == IDA_WARNING,
"AMICI_WARNING != IDA_WARNING"
amici::AMICI_WARNING == IDA_WARNING, "AMICI_WARNING != IDA_WARNING"
);

/*
Expand Down

0 comments on commit a82f6d4

Please sign in to comment.