delete unuseful semicolon (#1783)
This commit is contained in:
parent
5a123eb840
commit
5144871577
@ -31,7 +31,7 @@ IObservableVector<String ^> ^ KeyGraphFeaturesInfo::ConvertWStringVector(vector<
|
|||||||
IObservableMap<String ^, String ^> ^ KeyGraphFeaturesInfo::ConvertWStringIntMap(map<wstring, int> inMap)
|
IObservableMap<String ^, String ^> ^ KeyGraphFeaturesInfo::ConvertWStringIntMap(map<wstring, int> inMap)
|
||||||
{
|
{
|
||||||
Map<String ^, String ^> ^ outMap = ref new Map<String ^, String ^>();
|
Map<String ^, String ^> ^ outMap = ref new Map<String ^, String ^>();
|
||||||
;
|
|
||||||
for (const auto& m : inMap)
|
for (const auto& m : inMap)
|
||||||
{
|
{
|
||||||
outMap->Insert(ref new String(m.first.c_str()), m.second.ToString());
|
outMap->Insert(ref new String(m.first.c_str()), m.second.ToString());
|
||||||
|
Loading…
Reference in New Issue
Block a user