I don't understand why the first doesn't work instead the second works!

#include <boost/bind.hpp>
#include <boost/function.hpp>

#include "concurrentQueue.h";
class TestClass {
    public:              
                static concurrentQueue<function<void()>> notW;

                static concurrentQueue<int> Works;
}

I attach also the beginning of the concurrentQueue class:

template<class Data> class concurrentQueue
link|improve this question

80% accept rate
What's the error message? – Mat Dec 24 '11 at 15:55
possible duplicate of C++ Templates: Angle brackets problems – Cody Gray Dec 24 '11 at 16:01
If I had known I wouldn't have opened the thread – rodi Dec 24 '11 at 16:04
I'm not blaming you. :-) I wasn't the one who downvoted your question. I didn't know the answer either. It's just good to keep duplication to a minimum around here. Existing questions are hard enough to find as it is. – Cody Gray Dec 24 '11 at 16:07
feedback

2 Answers

up vote 2 down vote accepted

Put a space inside the >> to prevent it from being treated as a right-shift operator:

static concurrentQueue<function<void()> > notW;

With C++11 compilers this won't be necessary, as the compiler will interpret the angle brackets as closing the template argument list where possible.

link|improve this answer
Without a space is allowed since C++11. – WTP'-- Dec 24 '11 at 15:58
@WTP: What is C++99? – interjay Dec 24 '11 at 15:59
I meant C++11. I'm confused by C99. – WTP'-- Dec 24 '11 at 16:00
however, if I do that, it isn't inizialized, right? how can I use Works.myFunc() for example? – rodi Dec 24 '11 at 18:42
feedback

You need a space between the two closing angle brackets in C++ 03 and earlier. This has been "fixed" in the new 2011 standard.

See for example this question for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.