summaryrefslogtreecommitdiff
path: root/src/parsetree.cc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2014-11-03 12:47:51 -0500
committerAdrian Thurston <thurston@complang.org>2014-11-03 12:47:51 -0500
commit236a742024aa0c6042ae05e47e31cf4a208cbf8a (patch)
treee325a0aae5cf08055dfed38f3c0c2cfa1eb370bc /src/parsetree.cc
parent010fe9c06205511c6d3ceb72df85af38adb36646 (diff)
downloadragel-236a742024aa0c6042ae05e47e31cf4a208cbf8a.tar.gz
added map2 type, also mapping to ptr of map<>
Diffstat (limited to 'src/parsetree.cc')
-rw-r--r--src/parsetree.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/parsetree.cc b/src/parsetree.cc
index 4aca980f..de68406c 100644
--- a/src/parsetree.cc
+++ b/src/parsetree.cc
@@ -161,16 +161,6 @@ int CmpUniqueList::compare( const UniqueList &ut1, const UniqueList &ut2 )
return 0;
}
-int CmpUniqueList2::compare( const UniqueList2 &ut1, const UniqueList2 &ut2 )
-{
- if ( ut1.value < ut2.value )
- return -1;
- else if ( ut1.value > ut2.value )
- return 1;
-
- return 0;
-}
-
int CmpUniqueVector::compare( const UniqueVector &ut1, const UniqueVector &ut2 )
{
if ( ut1.value < ut2.value )