Commit MetaInfo

修订版d3f769baecc0e7b748c29c46fbf6fe2d32274ff1 (tree)
时间2020-03-02 04:11:19
作者David Ludwig <dludwig@pobo...>
CommiterDavid Ludwig

Log Message

more code cleanups

更改概述

差异

diff -r b041acc1610d -r d3f769baecc0 main.cpp
--- a/main.cpp Sun Mar 01 14:09:14 2020 -0500
+++ b/main.cpp Sun Mar 01 14:11:19 2020 -0500
@@ -858,9 +858,9 @@
858858 ImGui::SetColumnWidth(0, 110.f);
859859 ImGui::SetColumnWidth(1, 250.f);
860860
861- std::istringstream iss(mapping);
861+ std::istringstream mappingStream(mapping);
862862 std::string item;
863- for (int count = 0; std::getline(iss, item, ','); ++count) {
863+ for (int count = 0; std::getline(mappingStream, item, ','); ++count) {
864864 std::string name;
865865 std::string value;
866866 const size_t colon_pos = item.find(':');
Show on old repository browser