Skip to content

Commit

Permalink
fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arniiiii committed Aug 26, 2024
1 parent 5a8101e commit f0b8613
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/main.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#include <dependency/dependency.h>
#include <dependency/version.h>
#include <header_only/adder.h>
#include <header_only/version.h>
#include <namespaced_dependency/namespaced_dependency.h>
#include <namespaced_dependency/version.h>
#include <transitive_dependency/transitive_dependency.h>
#include <transitive_dependency/version.h>
#include <header_only/adder.h>
#include <header_only/version.h>

#include <string>

Expand All @@ -29,7 +29,7 @@ int main() {
result &= TRANSITIVE_DEPENDENCY_VERSION_MINOR == 8;
result &= TRANSITIVE_DEPENDENCY_VERSION_PATCH == 9;
result &= TRANSITIVE_DEPENDENCY_VERSION_TWEAK == 21948124;
result &= (5 == add(2,3));
result &= (5 == add(2, 3));
result &= HEADER_ONLY_VERSION == std::string("1.0");
result &= HEADER_ONLY_VERSION_MAJOR == 1;
result &= HEADER_ONLY_VERSION_MINOR == 0;
Expand Down

0 comments on commit f0b8613

Please sign in to comment.