add missing inline

master
Daniel Kolesa 2018-01-06 00:17:47 +01:00
parent 51d7a62bee
commit e5162233d4
1 changed files with 1 additions and 1 deletions

View File

@ -790,7 +790,7 @@ namespace utf {
bool decode(wstring_range &r, char32_t &ret) noexcept;
template<typename R, typename C>
bool decode(R &sink, basic_char_range<C const> &r) {
inline bool decode(R &sink, basic_char_range<C const> &r) {
if (char32_t ch; utf::decode(r, ch)) {
sink.put(ch);
return true;