Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Aug 2, 2023
1 parent c6dc411 commit cf39082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rapidfuzz/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ if(NOT Windows)
#include <cstddef>
std::atomic<int> x{0};
int main() {
auto c = x.load(std::memory_order_relaxed)
auto c = x.load(std::memory_order_relaxed);
return 0;
}
]=])
Expand Down

0 comments on commit cf39082

Please sign in to comment.