Opened 11 years ago

Closed 9 years ago

#6747 closed Bugs (invalid)

Circular_Buffer / Bounded_Buffer inside Template class problem

Reported by: Koutsunis Prater <Koutsunis.Prater@…> Owned by: viboes
Milestone: To Be Determined Component: circular_buffer
Version: Boost 1.49.0 Severity: Problem
Keywords: Cc:

Description (last modified by viboes)

I am trying to create an instance of:

circular_buffer<ARRAY_TYPE> buffer (ARRAY_LENGTH);

inside of the following class:

template <class ARRAY_TYPE, unsigned int ARRAY_LENGTH>
class SmartArray
{
private:

but I keep getting:

error C2061: syntax error : identifier "ARRAY_LENGTH"
see reference to class template instantiation 'SmartArray<ARRAY...etc'

leaving off the (ARRAY_LENGTH) or doing something like (decltype(ARRAY_LENGTH)) stops this error but just causes other errors

Change History (7)

comment:1 by viboes, 10 years ago

Component: Nonecircular_buffer
Owner: set to Jan Gaspar

comment:2 by anonymous, 10 years ago

Not sure this is a circular_buffer bug. Does it work if you substitute circular_buffer with std::vector?

comment:3 by viboes, 9 years ago

Description: modified (diff)

comment:4 by viboes, 9 years ago

I don't see where circular_buffer is used in your code. Please, could you show more code?

comment:5 by viboes, 9 years ago

Ping !!!

comment:6 by viboes, 9 years ago

Owner: changed from Jan Gaspar to viboes
Status: newassigned

comment:7 by viboes, 9 years ago

Resolution: invalid
Status: assignedclosed

Please reopen it when the requested information is provided (code, compiler error, ...)

Note: See TracTickets for help on using tickets.