summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2005-07-19 23:29:50 +0000
committerAdrian Thurston <thurston@complang.org>2005-07-19 23:29:50 +0000
commit9a18d7ae6508098035a31d755df6ce4d7e61da86 (patch)
tree6d626aef3b5bc4a7e17e5c45c364844e094ef570 /test
parentca9e9634bdff007b6e002e02bd202280dc47fad8 (diff)
downloadcolm-9a18d7ae6508098035a31d755df6ce4d7e61da86.tar.gz
fixed compile error: wrong reference to class
Diffstat (limited to 'test')
-rw-r--r--test/test_compare.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_compare.cpp b/test/test_compare.cpp
index e06d3106..89014922 100644
--- a/test/test_compare.cpp
+++ b/test/test_compare.cpp
@@ -51,6 +51,6 @@ struct CmpItem
int main()
{
Vector<Item> v;
- BstSet< Vector<Item>, CmpTableNsc<Item, CmpItem> > bst;
+ BstSet< Vector<Item>, CmpTableNs<Item, CmpItem> > bst;
bst.insert(Vector<Item>());
}