Skip to content

Commit

Permalink
Fix clang-tidy warning (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul authored Mar 28, 2024
1 parent e8b2ff7 commit 15a7bdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/sleipnir/autodiff/VariableMatrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class SLEIPNIR_DLLEXPORT VariableMatrix {
*
* @param list The nested list of Variables.
*/
VariableMatrix(
std::initializer_list<std::initializer_list<Variable>> list) { // NOLINT
VariableMatrix( // NOLINT
std::initializer_list<std::initializer_list<Variable>> list) {
// Get row and column counts for destination matrix
m_rows = list.size();
m_cols = 0;
Expand Down

0 comments on commit 15a7bdd

Please sign in to comment.