
30 Apr
2004
30 Apr
'04
12:43 p.m.
On Thu, 29 Apr 2004 17:45:52 -0400 John Phillips <phillips@mps.ohio-state.edu> wrote:
Unimplemented C++ feature big_integer.hpp line 153
The portion in question is
template<class T> friend bool operator<(T lhs, const expression<Base>& rhs) { return rhs > lhs; }
which doesn't strike me as all that odd, but maybe I'm missing something. I'll try to look at it more, later and see if I can fix the problem.
Maybe something as simple as moving the definition... template<class T> friend bool operator<(T lhs, const expression<Base>& rhs); ... template<class T> bool operator<(T lhs, const expression<Base>& rhs) { return rhs > lhs; }