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 MakeLowerCase, MakeUpperCase

Changeset e0c441226211

Parent 4daa99dfb374

by Adrian Buehlmann

Changes to 2 files · Browse files at e0c441226211 Showing diff from parent 4daa99dfb374 Diff from another changeset...

 
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
 
42
43
44
 
 
 
 
 
 
 
 
 
 
45
46
47
@@ -42,16 +42,6 @@
  return max;  }   -void MakeLowerCase(std::string& s) -{ - std::transform(s.begin(), s.end(), s.begin(), tolower); -} - -void MakeUpperCase(std::string& s) -{ - std::transform(s.begin(), s.end(), s.begin(), toupper); -} -    // Remove leading whitespaces from a string  std::string TrimLeft(const std::string& str)
 
39
40
41
42
43
44
45
46
47
48
 
39
40
41
 
 
 
 
42
43
44
@@ -39,10 +39,6 @@
 // Return the length of the longest string in the vector.  int MaxStringLength(const std::vector<std::string>& stringvec);   -void MakeLowerCase(std::string& s); - -void MakeUpperCase(std::string& s); -  // Remove leading whitespaces from a string  std::string TrimLeft(const std::string& str);