From 5144871577cae49736ec729242e2ba9dc315b858 Mon Sep 17 00:00:00 2001 From: wy-luke Date: Tue, 8 Feb 2022 03:12:07 +0800 Subject: [PATCH] delete unuseful semicolon (#1783) --- src/GraphControl/Models/KeyGraphFeaturesInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GraphControl/Models/KeyGraphFeaturesInfo.cpp b/src/GraphControl/Models/KeyGraphFeaturesInfo.cpp index ca48f5c..23c334f 100644 --- a/src/GraphControl/Models/KeyGraphFeaturesInfo.cpp +++ b/src/GraphControl/Models/KeyGraphFeaturesInfo.cpp @@ -31,7 +31,7 @@ IObservableVector ^ KeyGraphFeaturesInfo::ConvertWStringVector(vector< IObservableMap ^ KeyGraphFeaturesInfo::ConvertWStringIntMap(map inMap) { Map ^ outMap = ref new Map(); - ; + for (const auto& m : inMap) { outMap->Insert(ref new String(m.first.c_str()), m.second.ToString());