Changeset 2f8d6d8 for app/src/lib/word.cc
- Timestamp:
- 10/14/09 21:27:05 (15 years ago)
- Branches:
- master
- Children:
- a26cf42
- Parents:
- 25b4022
- git-author:
- to <to@…> (10/14/09 21:27:05)
- git-committer:
- to <to@…> (10/14/09 21:27:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/lib/word.cc
r6ac84d8 r2f8d6d8 2 2 #include "word.h" 3 3 #include "auttools.h" 4 #include <istream.h> 5 //--------------------------------------------------------------------------- 4 #include <istream> 5 //--------------------------------------------------------------------------- 6 7 using namespace std; 8 6 9 //--------------------------------------------------------------------------- 7 10 … … 121 124 //--------------------------------------------------------------------------- 122 125 void Words::sort() { 123 std::sort(tab.begin(), tab.end(), Word::cmp_w); 126 // sort(tab.begin(), tab.end(), Word::cmp_w); //NIE DZIALA 124 127 } 125 128 126 129 //--------------------------------------------------------------------------- 127 130 void Words::sort_rev() { 128 std::sort(tab.begin(), tab.end(), cmp_w_rev_fun); 131 // sort(tab.begin(), tab.end(), cmp_w_rev_fun); // NIE DZIALA 129 132 } 130 133
Note: See TracChangeset
for help on using the changeset viewer.