Skip to content

Commit 1b054f8

Browse files
committed
fix: missing inline and stuff
1 parent 99ae6af commit 1b054f8

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

include/REX/BASE.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@
5555
#include <tuple>
5656
#include <type_traits>
5757
#include <typeinfo>
58+
#include <unordered_set>
59+
#include <unordered_map>
5860
#include <utility>
5961
#include <variant>
6062
#include <vector>

include/REX/REX/CONVERT.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace REX
77
{
8-
bool UTF8_TO_UTF16(const std::string_view a_in, std::wstring& a_out) noexcept
8+
inline bool UTF8_TO_UTF16(const std::string_view a_in, std::wstring& a_out) noexcept
99
{
1010
const auto cvt = [&](wchar_t* a_dst, std::size_t a_length) {
1111
return REX::W32::MultiByteToWideChar(
@@ -31,7 +31,7 @@ namespace REX
3131
return true;
3232
}
3333

34-
bool UTF16_TO_UTF8(const std::wstring_view a_in, std::string& a_out) noexcept
34+
inline bool UTF16_TO_UTF8(const std::wstring_view a_in, std::string& a_out) noexcept
3535
{
3636
const auto cvt = [&](char* a_dst, std::size_t a_length) {
3737
return REX::W32::WideCharToMultiByte(

0 commit comments

Comments
 (0)