Tabs to Spaces, comments.

This commit is contained in:
omar
2019-04-03 17:23:31 +02:00
parent cdb109f617
commit fc52364652
7 changed files with 92 additions and 89 deletions

View File

@ -1333,7 +1333,7 @@ const char* ImStrchrRange(const char* str, const char* str_end, char c)
int ImStrlenW(const ImWchar* str)
{
//return (int)wcslen((const wchar_t*)str); // FIXME-OPT: Could use this when wchar_t are 16-bits
//return (int)wcslen((const wchar_t*)str); // FIXME-OPT: Could use this when wchar_t are 16-bits
int n = 0;
while (*str++) n++;
return n;