Skip to content
Snippets Groups Projects
Commit 276e9fdd authored by Francois Keith's avatar Francois Keith
Browse files

Win32 compatibility for the warning display

parent 15e32381
No related branches found
No related tags found
No related merge requests found
......@@ -932,7 +932,11 @@ int main(int argc, char *argv[])
aHDR = aRobotDynamicsObjectConstructor.createHumanoidDynamicRobot();
aDebugHDR = aRobotDynamicsObjectConstructor.createHumanoidDynamicRobot();
#else
# ifdef WIN32
#pragma message ( " -- !!! -- Warning : Compiled with HRP2DYNAMICS !" )
# else
#warning "Compiled with HRP2DYNAMICS !"
# endif
Chrp2OptHumanoidDynamicRobot *aHRP2HDR= new Chrp2OptHumanoidDynamicRobot(&aRobotDynamicsObjectConstructor);
aHDR = aHRP2HDR;
aDebugHDR = new Chrp2OptHumanoidDynamicRobot(&aRobotDynamicsObjectConstructor);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment