Skip to content

Commit

Permalink
Add missing cstdint includes to avoid compiler errors because of unkn…
Browse files Browse the repository at this point in the history
…own symbols uint32_t and so on
  • Loading branch information
0xFEEDC0DE64 committed Jun 26, 2023
1 parent 97c48e0 commit 181265e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/catch2/catch_test_case_info.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#include <string>
#include <vector>
#include <cstdint>

#ifdef __clang__
#pragma clang diagnostic push
Expand Down
1 change: 1 addition & 0 deletions src/catch2/internal/catch_string_manip.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <string>
#include <iosfwd>
#include <vector>
#include <cstdint>

namespace Catch {

Expand Down
1 change: 1 addition & 0 deletions src/catch2/internal/catch_xmlwriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

#include <iomanip>
#include <type_traits>
#include <cstdint>

namespace Catch {

Expand Down

0 comments on commit 181265e

Please sign in to comment.