aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tuplr.hpp')
-rw-r--r--tuplr.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tuplr.hpp b/tuplr.hpp
index 1d858f8..d7f7350 100644
--- a/tuplr.hpp
+++ b/tuplr.hpp
@@ -74,11 +74,6 @@ struct LAddr {
unsigned up, over;
};
-inline ostream& operator<<(ostream& out, const LAddr& addr) {
- out << addr.up << ":" << addr.over;
- return out;
-}
-
/// Generic Lexical Environment
template<typename K, typename V>
struct Env : public list< vector< pair<K,V> > > {