1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix delete extra ';'

This commit is contained in:
bolero-MURAKAMI 2012-04-17 03:00:51 +09:00
parent e5391d339c
commit c532099a35
6 changed files with 9 additions and 9 deletions

View file

@ -11,7 +11,7 @@ namespace sprout {
: !*s1 ? -1
: !*s2 ? 1
: *s1 == *s2 ? sprout::wcscmp(s1 + 1, s2 + 1)
: static_cast<unsigned wchar_t>(*s1) - static_cast<unsigned wchar_t>(*s2)
: *s1 - *s2
;
}
} // namespace sprout

View file

@ -12,7 +12,7 @@ namespace sprout {
: !*s1 ? -1
: !*s2 ? 1
: *s1 == *s2 ? sprout::wcsncmp(s1 + 1, s2 + 1, n - 1)
: static_cast<unsigned wchar_t>(*s1) - static_cast<unsigned wchar_t>(*s2)
: *s1 - *s2
;
}
} // namespace sprout