https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278711

Dimitry Andric <d...@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |d...@freebsd.org

--- Comment #1 from Dimitry Andric <d...@freebsd.org> ---
I would guess that the code in question has "using namespace std;" at the top?
That is most likely the cause for this error: the local variable name 'stack'
now conflicts with 'std::stack'.

It would be more correct to remove the "using namespace std;" statement and fix
up the instances of std types used in the source, but an easier fix is to
rename the local 'stack' variable to something else, for instance 'stack_' or
'my_stack'.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to