diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/table_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/table_test.cpp b/tests/table_test.cpp index 4628474..19fd576 100644 --- a/tests/table_test.cpp +++ b/tests/table_test.cpp @@ -128,7 +128,7 @@ main() PathTable<char>::iterator quux_end = pt.find_descendants_end(quux ); assert(quux_end != quux); - std::vector<std::pair<Path,char> > yanked = pt.yank(quux, quux_end); + Table<Path,char> yanked = pt.yank(quux, quux_end); cout << "Yanked " << yank_path << endl; for (PathTable<char>::const_iterator i = pt.begin(); i != pt.end(); ++i) |