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 StartsWith

Changeset ae1e26c77303

Parent 93559485b4c0

by Adrian Buehlmann

Changes to 2 files · Browse files at ae1e26c77303 Showing diff from parent 93559485b4c0 Diff from another changeset...

 
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 
29
30
31
 
 
 
 
 
 
 
 
32
33
34
@@ -29,14 +29,6 @@
 }     -// Test if string starts with substr -bool StartsWith(const std::string& str, const std::string& substr) -{ - return str.substr(0, substr.length()) == substr; -} - - -  // Quotes a string  std::string Quote(const std::string& str)  {
 
23
24
25
26
27
28
29
30
31
 
23
24
25
 
 
 
26
27
28
@@ -23,9 +23,6 @@
 #include <string>  #include <windows.h>   -// Test if string starts with substr -bool StartsWith(const std::string& str, const std::string& substr); -  // Quotes a string  std::string Quote(const std::string& str);