Update 8.4.1:

- Fixed bug that produced incorrect SSL code when source file had some unreferenced variables
- Fixed int2ssl hang indefinitely on "Loading namespace" step (VS2017)
- Updated gitignore for VS2017 files
- bump version number
This commit is contained in:
VladislavKolosovsky
2017-10-12 00:29:39 +07:00
parent 38732c7323
commit 0257e770cc
5 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ void CNamespace::Serialize()
for(uint32_t i = 0; i < strNonGraph.length(); i++)
{
strNewString = replace(strNewString, "" + strNonGraph[i], "\\" + strEscape[i]);
strNewString = replace(strNewString, std::string() + strNonGraph[i], std::string("\\") + strEscape[i]);
}
m_Map.SetAt(ulTotalRead + 6, strNewString);