Fix for the bug ID: 2830326: " multiple definition of `utf8::internal::is_overlong_sequence"
git-svn-id: http://svn.code.sf.net/p/utfcpp/code@98 a809a056-fc17-0410-9590-b4f493f8b08e
This commit is contained in:
parent
4bccdb30d0
commit
6adb83ba84
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ namespace internal
|
|||
return 0;
|
||||
}
|
||||
|
||||
bool is_overlong_sequence(uint32_t cp, int length)
|
||||
inline bool is_overlong_sequence(uint32_t cp, int length)
|
||||
{
|
||||
if (cp < 0x80) {
|
||||
if (length != 1)
|
||||
|
|
Loading…
Reference in a new issue