File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 11{
2- "geode" : " 4.2.0 " ,
2+ "geode" : " 4.1.1 " ,
33 "gd" : {
44 "android" : " 2.2074" ,
55 "win" : " 2.2074" ,
Original file line number Diff line number Diff line change @@ -117,8 +117,7 @@ class Tags {
117117 }
118118
119119 // Convert a string to a corresponding tag (integer)
120- int getTagFromString (const std::string& name) {
121- log::debug (" Getting tag from string: {}" , name);
120+ int getTagFromString (std::string name) {
122121 auto it = m_tagMap.find (name);
123122 if (it != m_tagMap.end ()) {
124123 log::debug (" Found tag: {}" , it->second );
@@ -130,7 +129,6 @@ class Tags {
130129
131130 // Convert an integer tag back to the corresponding string
132131 std::string getStringFromTag (int tag) {
133- log::debug (" Getting string from tag: {}" , tag);
134132 auto it = m_stringMap.find (tag);
135133 if (it != m_stringMap.end ()) {
136134 log::debug (" Found string: {}" , it->second );
You can’t perform that action at this time.
0 commit comments