Errors while trying to build boost::priority_queue
Hi,
When I try to build "priority_queue_example.cpp" it get these warnings(and
so errors) pointing to "priority_queue_example.h" on the line where my
priority_queue is declared. The warnings are,
1> priority_queue_example.cpp
1>c:\Projects\lib\boost\boost\heap\detail\stable_heap.hpp(102): error
C2220: warning treated as error - no 'object' file generated
1>c:\Projects\lib\boost\boost\heap\detail\stable_heap.hpp(102): warning
C4100: 'rhs' : unreferenced formal parameter
1> c:\Projects\lib\boost\boost\heap\detail\stable_heap.hpp(102) :
while compiling class template member function
'boost::heap::detail::size_holder
AMDG On 12/08/2017 09:02 PM, Ram via Boost-users wrote:
When I try to build "priority_queue_example.cpp" it get these warnings(and so errors) pointing to "priority_queue_example.h" on the line where my priority_queue is declared. The warnings are,
You can just disable this warning (or don't compile with warnings as errors). It's harmless in this case.
1> priority_queue_example.cpp 1>c:\Projects\lib\boost\boost\heap\detail\stable_heap.hpp(102): error C2220: warning treated as error - no 'object' file generated 1>c:\Projects\lib\boost\boost\heap\detail\stable_heap.hpp(102): warning C4100: 'rhs' : unreferenced formal parameter <snip>
In Christ, Steven Watanabe
Oh thanks, Steven, its a big project with more than 5000 files etc, so I cant disable treating warnings are errors.Is there anything else I could do? Thanks!
participants (2)
-
Ram
-
Steven Watanabe