Skip to content

Commit

Permalink
refs #18, missing small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gulrak committed May 18, 2019
1 parent 5c72bac commit 40ef125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ghc/filesystem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ GHC_INLINE void appendUTF8(std::string& str, uint32_t unicode)
str.push_back(static_cast<char>((unicode & 0x3f) + 128));
}
else {
str.push_back(0xfffd);
appendUTF8(str, 0xfffd);
}
}

Expand Down

0 comments on commit 40ef125

Please sign in to comment.