
11 Jun
2008
11 Jun
'08
4:18 p.m.
Paul S. Strauss
Your operator<< cannot be found by ADL. There are a couple of ways around this. * you can put operator<< in namespace std. (Technically illegal) * you can declare it before including any Boost.Test headers.
Thanks for the advice. FYI: Adding it to namespace std worked, but yuck. Moving it before the Test headers did not.
Unfortunately there is no way around it. The only other thing is to disable type_info output completely Gennadiy