Skip to content

Commit df2734c

Browse files
committed
Make Utf16::codepoint locally inline
1 parent ecc950f commit df2734c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cpp/encoding/Encodings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ String cpp::encoding::Utf16::decode(const cpp::marshal::View<uint8_t>& buffer)
687687
#endif
688688
}
689689

690-
char32_t cpp::encoding::Utf16::codepoint(const cpp::marshal::View<uint8_t>& buffer)
690+
inline char32_t cpp::encoding::Utf16::codepoint(const cpp::marshal::View<uint8_t>& buffer)
691691
{
692692
auto first = static_cast<char16_t>(Marshal::readUInt16(buffer));
693693

0 commit comments

Comments
 (0)