From d6414c9ff74e3f8076a1e94d3c6074366119900e Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Mon, 12 Aug 2013 21:25:36 -0400 Subject: Windows compiles! (w/Visual Studio 2012) That's about all it does, but it's a start. --- node/Array.hpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'node/Array.hpp') diff --git a/node/Array.hpp b/node/Array.hpp index d0fe10ec..d48c2f52 100644 --- a/node/Array.hpp +++ b/node/Array.hpp @@ -94,7 +94,14 @@ public: inline reference back() throw() { return data[S-1]; } inline const_reference back() const throw() { return data[S-1]; } - inline bool operator==(const Array &k) const throw() { return std::equal(begin(),end(),k.begin()); } + inline bool operator==(const Array &k) const throw() + { + for(unsigned long i=0;i(const Array &k) const throw() { return (k < *this); } -- cgit v1.2.3