- Timestamp:
- May 25, 2008, 1:11:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/ArgumentCompletionFunctions.cc
r1402 r1416 35 35 namespace autocompletion 36 36 { 37 const std::list<std::pair<std::string, std::string> >&fallback()37 std::list<std::pair<std::string, std::string> > fallback() 38 38 { 39 std::cout << "5_1\n"; 40 static std::list<std::pair<std::string, std::string> > list; 41 std::cout << "5_2\n"; 39 static std::list<std::pair<std::string, std::string> > list(1, std::pair<std::string, std::string>("muh", "MUH")); 42 40 return list; 43 41 }
Note: See TracChangeset
for help on using the changeset viewer.