You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
myth5
Posted - Jan 06 2014 : 07:58:46 AM class define: template<typename T, template<typename E, typename = std::allocator<E> > class CONT = std::deque> // deque has default template parameter class Stack7 { public: Stack7(); ~Stack7();
void Push(T const& element); void Pop(); T Top() const;
Push funtion: template<typename T, template<typename E, typename /*= std::allocator<E> */> class CONT /*= std::deque*/> void Stack7<T, CONT>::Push(T const& element) {
} maybe the description is incorrect,but the code say all.
1 L A T E S T R E P L I E S (Newest First)
feline
Posted - Jan 06 2014 : 12:45:28 PM I am seeing the same effect here. Thank you for the clear description.
case=79393
For now you are going to need to fix the declarations manually, but hopefully VA is doing enough to make this feature useful, and hopefully you are not seeing this problem to often.