here is the example of the error i am getting
/borealis/nmstl/bin/wtf g++ -g -Wall -Werror -I.. -fPIC -DPIC -c rpc.cc -o rpc.lo
In function âvoid __nmstl_freeze_typeid(serial_surrogate<T>, const T&,
oserial&)â:
in ../nmstl/serial
error: no match for âoperator<<â in âo << "Test"â
in ../nmstl/serial, line 61
61> o << true;
64> }
65>
In function âT* __nmstl_serial_create(serial_surrogate<T>, iserial&)â:
in ../nmstl/serial
error: no match for âoperator>>â in âin >> existsâ
in ../nmstl/serial, line 69
67> inline T* __nmstl_serial_create(serial_surrogate<T>, iserial& in) {
68> bool exists;
69> if (in >> exists && exists) {
70> T* t = new T;
71> in >> *t;
make[1]: *** [rpc.lo] Error 1
make[1]: Leaving directory /nmstl/src'
make: *** [lib] Error 2