mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
fix(developer): remove now unnecessary cast in u16trim
This commit is contained in:
parent
ea545dc05a
commit
cfdd131129
1 changed files with 1 additions and 1 deletions
|
|
@ -426,5 +426,5 @@ KMX_WCHAR* u16rtrim(KMX_WCHAR *p) {
|
|||
* @return Pointer to the string modified to remove leading and trailing whitespace
|
||||
*/
|
||||
KMX_WCHAR* u16trim(KMX_WCHAR *p) {
|
||||
return u16rtrim((KMX_WCHAR*)u16ltrim(p));
|
||||
return u16rtrim(u16ltrim(p));
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue