
Matthias Schabel wrote:
Making progress - got example1 to work, but needed
#if defined (_MSC_VER) # pragma warning(push) # pragma warning(disable: 4100) // 'source' : unreferenced formal parameter #endif
to avoid a blizzard of warning messages.
I'm impressed. Example 1 is the only one I can't get to work.
Example 2 still doesn't work (as noted by Deane).
Deane's last post indicated that he now had all tests running...am I wrong, Deane?
No. You're right. I've got all examples except #1 working.
I think it's the opposite problem - the cxxabi.h header has a bunch of references to size_t that aren't qualified with std::. Anyway, I think the problem went away (again, per Deane) when I moved my using namespace boost::mpl; inside the boost::units namespace. Again, please correct me if I'm wrong...
Again, that's right. The problem disappeared in the latest version. Deane