|
Boost Testing : |
From: John Maddock (john_at_[hidden])
Date: 2005-04-02 05:13:26
>>Those are linker errors not compiler errors, It means it compiled fine
>>but it can't find an implementation for those.
>>
>>CodeWarrior is much stricter on const types we've found that several
>>times with Boost Library.
>>The non-LazyPtr is often something called extern but the initialization
>>is not done.
>>
> The const types clue sounds promising. I don't follow his non-LazyPtr
> point.
Actually looking again at the errors I think his suggestions are
red-herrings, the errors are all from wide character facets, maybe you could
see if something like the program below would link?
John.
#include <locale>
int main()
{
std::locale l;
const std::ctype<wchar_t>& ct = std::use_facet<std::ctype<wchar_t> >(l);
return !ct.is(std::ctype<wchar_t>::lower, L'a');
}