Skip to content
Snippets Groups Projects
Commit 5078f9e8 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Fix use of deprecated functions

parent 3cfd85ad
No related branches found
No related tags found
No related merge requests found
......@@ -370,7 +370,7 @@ namespace armarx
ARMARX_ERROR << "Exception calling '" << GetTypeString<NJointControllerT>() << "::GenerateConfigDescription'"
<< "\n---- file = " << e.ice_file()
<< "\n---- line = " << e.ice_line()
<< "\n---- name = " << e.ice_name()
<< "\n---- id = " << e.ice_id()
<< "\n---- what:\n" << e.what()
<< "\n---- stacktrace:\n" << e.ice_stackTrace();
throw;
......@@ -398,7 +398,7 @@ namespace armarx
ARMARX_ERROR << "Exception calling '" << GetTypeString<NJointControllerT>() << "::GenerateConfigFromVariants'"
<< "\n---- file = " << e.ice_file()
<< "\n---- line = " << e.ice_line()
<< "\n---- name = " << e.ice_name()
<< "\n---- id = " << e.ice_id()
<< "\n---- what:\n" << e.what()
<< "\n---- stacktrace:\n" << e.ice_stackTrace();
throw;
......
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