commit 2025-08-20 15:04 edit a bit ZtCStringBase

This commit is contained in:
2025-08-20 15:04:04 +09:00
parent e554fd25f3
commit b83b4120fb

View File

@ -7235,10 +7235,8 @@ namespace ZNsMain
const int CI_Gap='a'-'A';
if(AC_Char>='A' && AC_Char<='Z')
return AC_Char+CI_Gap;
else
return AC_Char;
//else
return AC_Char+CI_Gap;
else return AC_Char;
}/*
static TypeChar MakeSmall(TypeChar AC_Char)*/
@ -7248,10 +7246,8 @@ namespace ZNsMain
const int CI_Gap='a'-'A';
if(AC_Char>='a' && AC_Char<='z')
return AC_Char-CI_Gap;
else
return AC_Char;
//else
return AC_Char-CI_Gap;
else return AC_Char;
}/*
static TypeChar MakeBig(TypeChar AC_Char)*/