Skip to content

Commit

Permalink
micro fix of test for header_only
Browse files Browse the repository at this point in the history
  • Loading branch information
Arniiiii committed Aug 21, 2024
1 parent 84b59e5 commit 61aba0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ int main() {
result &= TRANSITIVE_DEPENDENCY_VERSION_PATCH == 9;
result &= TRANSITIVE_DEPENDENCY_VERSION_TWEAK == 21948124;
result &= (5 == add(2,3));
result &= HEADER_ONLY_VERSION == std::string("1.2");
result &= HEADER_ONLY_VERSION == std::string("1.0");
result &= HEADER_ONLY_VERSION_MAJOR == 1;
result &= HEADER_ONLY_VERSION_MINOR == 2;
result &= HEADER_ONLY_VERSION_MINOR == 0;
result &= HEADER_ONLY_VERSION_PATCH == 0;
result &= HEADER_ONLY_VERSION_TWEAK == 0;
return result ? 0 : 1;
Expand Down

0 comments on commit 61aba0f

Please sign in to comment.