Skip to content

Commit

Permalink
fix C2027 from doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
Garcia6l20 committed Oct 22, 2020
1 parent e01e4e8 commit 53a1c12
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/ip_address_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

#include "doctest/doctest.h"

#include <iostream> // error C2027 from doctest.h:861

TEST_SUITE_BEGIN("ip_address");

using cppcoro::net::ip_address;
Expand Down
2 changes: 2 additions & 0 deletions test/ip_endpoint_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#include "doctest/doctest.h"

#include <iostream> // error C2027 from doctest.h:861

TEST_SUITE_BEGIN("ip_endpoint");

using namespace cppcoro::net;
Expand Down
1 change: 1 addition & 0 deletions test/ipv4_address_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "doctest/doctest.h"

#include <iostream> // error C2027 from doctest.h:861

TEST_SUITE_BEGIN("ipv4_address");

Expand Down
2 changes: 2 additions & 0 deletions test/ipv4_endpoint_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

#include "doctest/doctest.h"

#include <iostream> // error C2027 from doctest.h:861

TEST_SUITE_BEGIN("ip_endpoint");

using namespace cppcoro::net;
Expand Down
1 change: 1 addition & 0 deletions test/ipv6_address_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "doctest/doctest.h"

#include <iostream> // error C2027 from doctest.h:861

TEST_SUITE_BEGIN("ipv6_address");

Expand Down
2 changes: 2 additions & 0 deletions test/ipv6_endpoint_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#include "doctest/doctest.h"

#include <iostream> // error C2027 from doctest.h:861

TEST_SUITE_BEGIN("ipv6_endpoint");

using namespace cppcoro::net;
Expand Down
2 changes: 2 additions & 0 deletions test/sync_wait_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

#include "doctest/doctest.h"

#include <iostream> // error C2027 from doctest.h:861

TEST_SUITE_BEGIN("sync_wait");

static_assert(std::is_same<
Expand Down

0 comments on commit 53a1c12

Please sign in to comment.