Skip to content

Commit

Permalink
Fix usage of wrong variable in if condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
breyerml committed Nov 12, 2024
1 parent 122e7cc commit 5379a92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ list(POP_BACK CMAKE_MESSAGE_INDENT)
## enable automatic formatting using clang-format ##
########################################################################################################################
option(PLSSVM_ENABLE_FORMATTING "Enable a formatting targets using clang-format." OFF)
if (PLSSVM_ENABLE_FORMAT)
if (PLSSVM_ENABLE_FORMATTING)
list(APPEND CMAKE_MESSAGE_INDENT "Formatting: ")

## install library to add a clang-format target
Expand Down

0 comments on commit 5379a92

Please sign in to comment.