Skip to content

Commit

Permalink
Fixed forgotten #include statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
ww898 committed Jan 30, 2024
1 parent c8cd078 commit 90c2cd3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/ww898/cp_utf16.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

#include <cstdint>
#include <stdexcept>
#include <utility>

namespace ww898 {
namespace utf {
Expand Down
1 change: 1 addition & 0 deletions include/ww898/cp_utf32.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

#include <cstdint>
#include <stdexcept>
#include <utility>

namespace ww898 {
namespace utf {
Expand Down
1 change: 1 addition & 0 deletions include/ww898/cp_utf8.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

#include <cstdint>
#include <stdexcept>
#include <utility>

namespace ww898 {
namespace utf {
Expand Down
2 changes: 2 additions & 0 deletions include/ww898/utf_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

#pragma once

#include <cstdint>

// Normally `__cpp_lib_string_view` should be defined in string header
#include <string>

Expand Down
3 changes: 3 additions & 0 deletions include/ww898/utf_converters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
#include <ww898/utf_config.hpp>

#include <cstdint>
#include <stdexcept>
#include <utility>
#include <type_traits>
#include <iterator>
#include <string>

Expand Down
2 changes: 2 additions & 0 deletions include/ww898/utf_sizes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
#include <ww898/utf_config.hpp>

#include <cstddef>
#include <stdexcept>
#include <type_traits>
#include <iterator>
#include <string>

Expand Down

0 comments on commit 90c2cd3

Please sign in to comment.