Skip to content
Snippets Groups Projects
Commit 9b6b41ed authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

RTE: Fix comparison of FormalRTESymbol (error from 5834e381)

parent 098bf208
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ void FormalRTESymbol::appendElement ( FormalRTESymbol element ) {
 
int FormalRTESymbol::compare ( const FormalRTESymbol & other ) const {
auto first = std::tie ( symbol, getElements ( ) );
auto second = std::tie ( symbol, other.getElements ( ) );
auto second = std::tie ( other.symbol, other.getElements ( ) );
 
std::compare < decltype ( first ) > comp;
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment