Tagged Questions
2
votes
1answer
165 views
Solve boost.thread compilation error with Metrowerks compiler
I'm trying to use boost.thread with metrowerks codewarrior 5.5.3; in the header thread.hpp, I get the error that he's redefining thread::thread_data:
class BOOST_THREAD_DECL thread
{
private:
... ...
1
vote
3answers
441 views
How can I inspect an STL list in the CodeWarrior debugger?
Is there any easy way to view the data in an STL std::list<T> in the Metrowerks CodeWarrior debugger? I can view data near the beginning or end of the list by looking at expressions such as
...
0
votes
1answer
52 views
Codewarrior doesn't accept __COUNTER__ macro although it exists in the compiler reference
I read in the CodeWarrior Build Tools Reference for Power Architecture that the __COUNTER__ predefined macro exists for Codewarrior like for MSVC or GCC. But, when I try to build my project I get :
...
0
votes
1answer
154 views
Is it possible to make a template function friend to a Template Specialization Class?
I have a template specialization class and I need to declare a function template as a friend to this class. I have already created the following code which compiles and works well on the MSVC compiler ...