Changeset 127
- Timestamp:
- Aug 2, 2006, 1:08:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/utility.h
r126 r127 143 143 }; 144 144 145 ///146 /// Jari, is this obsolete? And thus erasable?147 ///148 struct CodingMore :149 public std::binary_function<std::pair<std::string,std::vector<u_int> >,150 std::pair<std::string,std::vector<u_int> >,151 bool >152 {153 inline bool operator()154 (const std::pair<std::string,std::vector<u_int> >& a,155 const std::pair<std::string,std::vector<u_int> >& b)156 {157 if (a.second.back() > b.second.back())158 return true;159 else if (a.second.back() < b.second.back())160 return false;161 return a.first < b.first;162 }163 };164 165 145 }} // end of namespace svnstat end of namespace theplu 166 146
Note: See TracChangeset
for help on using the changeset viewer.