diff options
Diffstat (limited to 'src/mir/mir.hpp')
-rw-r--r-- | src/mir/mir.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mir/mir.hpp b/src/mir/mir.hpp index 93bd7244..cacaea99 100644 --- a/src/mir/mir.hpp +++ b/src/mir/mir.hpp @@ -58,6 +58,7 @@ TAGGED_UNION_EX(LValue, (), Variable, ( ) ); extern ::std::ostream& operator<<(::std::ostream& os, const LValue& x); +extern bool operator<(const LValue& a, const LValue& b); extern bool operator==(const LValue& a, const LValue& b); static inline bool operator!=(const LValue& a, const LValue& b) { return !(a == b); |