Skip to content

Commit

Permalink
try something for windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerJang27 committed May 27, 2023
1 parent 1e16624 commit b0d3bcc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions example/basic_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,13 @@

#include <semver.hpp>

#include <cstdint>
#include <iostream>

using namespace semver;

int main() {
constexpr version v_default;
static_assert(v_default == version(0, 1, 0, prerelease::none, 0));
static_assert(v_default == version(0, 1, 0, prerelease::none, std::nullopt));
std::cout << v_default << std::endl; // 0.1.0

constexpr version v1{1, 4, 3};
Expand Down
1 change: 0 additions & 1 deletion test/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
#include <semver.hpp>

#include <cstddef>
#include <cstdint>
#include <array>
#include <optional>
#include <string>
Expand Down

0 comments on commit b0d3bcc

Please sign in to comment.