Skip to content

Commit 90c2cd3

Browse files
committed
Fixed forgotten #include statements.
1 parent c8cd078 commit 90c2cd3

File tree

6 files changed

+10
-0
lines changed

6 files changed

+10
-0
lines changed

include/ww898/cp_utf16.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
#include <cstdint>
2828
#include <stdexcept>
29+
#include <utility>
2930

3031
namespace ww898 {
3132
namespace utf {

include/ww898/cp_utf32.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
#include <cstdint>
2828
#include <stdexcept>
29+
#include <utility>
2930

3031
namespace ww898 {
3132
namespace utf {

include/ww898/cp_utf8.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
#include <cstdint>
2828
#include <stdexcept>
29+
#include <utility>
2930

3031
namespace ww898 {
3132
namespace utf {

include/ww898/utf_config.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
#pragma once
2626

27+
#include <cstdint>
28+
2729
// Normally `__cpp_lib_string_view` should be defined in string header
2830
#include <string>
2931

include/ww898/utf_converters.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
#include <ww898/utf_config.hpp>
2929

3030
#include <cstdint>
31+
#include <stdexcept>
32+
#include <utility>
33+
#include <type_traits>
3134
#include <iterator>
3235
#include <string>
3336

include/ww898/utf_sizes.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
#include <ww898/utf_config.hpp>
2929

3030
#include <cstddef>
31+
#include <stdexcept>
32+
#include <type_traits>
3133
#include <iterator>
3234
#include <string>
3335

0 commit comments

Comments
 (0)