fix: redundant semicolons (#230)
### Description of the changes: - Remove redundant semicolons in: - [x] UnitConverter.cpp - [x] DateCalculator.xaml.cpp - [x] CopyPasteManagerTest.cpp ### How changes were validated: - Manual
This commit is contained in:
committed by
Howard Wolosky
parent
140a5b3b21
commit
a98cb50a70
@@ -302,8 +302,8 @@ wstring UnitConverter::Serialize()
|
||||
out << std::to_wstring(m_currentHasDecimal) << delimiter << std::to_wstring(m_returnHasDecimal) << delimiter << std::to_wstring(m_switchedActive) << delimiter;
|
||||
out << m_currentDisplay << delimiter << m_returnDisplay << delimiter << "|";
|
||||
wstringstream categoryString(wstringstream::out);
|
||||
wstringstream categoryToUnitString(wstringstream::out);;
|
||||
wstringstream unitToUnitToDoubleString(wstringstream::out);;
|
||||
wstringstream categoryToUnitString(wstringstream::out);
|
||||
wstringstream unitToUnitToDoubleString(wstringstream::out);
|
||||
for (const Category& c : m_categories)
|
||||
{
|
||||
categoryString << CategoryToString(c, delimiter) << ",";
|
||||
|
Reference in New Issue
Block a user