Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext: remove unused SerializeStringVector

Changeset d82315950cc7

Parent 35f564fa1af4

by Adrian Buehlmann

Changes to 2 files · Browse files at d82315950cc7 Showing diff from parent 35f564fa1af4 Diff from another changeset...

 
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
 
139
140
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -139,23 +139,3 @@
  wide[ret] = L'\0';   return wide;  } - - -// Serialize a vector of strings -std::string SerializeStringVector(const std::vector<std::string>& vStrings, - const std::string& sDelimiter) -{ - std::string sResult; - std::vector<std::string>::const_iterator it = vStrings.begin(); - if (it != vStrings.end()) - { - sResult = *it; - it++; - } - while (it != vStrings.end()) - { - sResult += sDelimiter + *it; - it++; - } - return sResult; -}
 
54
55
56
57
58
59
60
61
62
 
54
55
56
 
 
 
 
57
58
@@ -54,9 +54,5 @@
 // Convert multibyte string to Unicode string  std::wstring MultibyteToWide(const std::string& multibyte, UINT CodePage = CP_ACP);   -// Serialize a vector of strings -std::string SerializeStringVector(const std::vector<std::string>& vStrings, - const std::string& sDelimiter); -    #endif