You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Platform :
Windows 7 / CMAKE GUI 2.8.12.2 generated VS2010 express 32bit project.
When the project is set to Release/MinSizeRel/RelWithDebInf
Whenever any message is added after osc::BeginMessage("..."), the error will
throw.
eg:
osc::OutboundPacketStream p( buffer, OUTPUT_BUFFER_SIZE );
p << osc::BeginMessage( "/test" ) << osc::EndMessage; // OK
p << osc::BeginMessage( "/test" ) << osc::Nil << osc::EndMessage; // throw
error.
Also warning C4702: unreachable code during compilation, in
OutboundPacketStream << operator overload.
Seems any code after "CheckForAvailableArgumentSpace(X);" won't run.
The warning can be surpressed by turning off the optimization, but the error
will still throw.
Could I know the direction how to debug it (I'm not an expert in C++, so need
some advices).
Thanks.
Original issue reported on code.google.com by victor...@gmail.com on 13 May 2014 at 5:03
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
victor...@gmail.com
on 13 May 2014 at 5:03The text was updated successfully, but these errors were encountered: