mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
win build
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58621 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander Trofimov
parent
0f3ee55329
commit
50e5307c7b
@ -95,12 +95,13 @@ namespace MathEquation
|
||||
|
||||
static String CreateFromInt32(int nValue)
|
||||
{
|
||||
//char intStr[32];
|
||||
//_itoa_s(nValue, (char *)&intStr, 32, 10);
|
||||
|
||||
return std::to_string(nValue);;
|
||||
|
||||
//return String(intStr);
|
||||
#ifdef _WIN32
|
||||
char intStr[32];
|
||||
_itoa_s(nValue, (char *)&intStr, 32, 10);
|
||||
return String(intStr);
|
||||
#else
|
||||
return std::to_string(nValue);;
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string GetValue()
|
||||
|
||||
Reference in New Issue
Block a user