Tinyxml: Problem updating code from diamonback to electric.
Hi all,
I have a node that is using tinyxml to read and xml file.
That node works perfectly in diamonback, but I need to update it to electric, so I follow the instrucionts in http://www.ros.org/wiki/tinyxml :
1- Remove tinyxml dependency in manifest.
2- Change the header file which is included... Now is just:
#include <tinyxml.h>
3- Link against the library in the CMakeLists...
target_link_libraries(master tinyxml)
It compiles without problems, but when running the node, the behaviour is not the expected and gives some errors.
It seems like the function Value() is not behaving the same way it was in diamondback...
Do you think I should do any change more than what I have already done? Or maybe the library that was using diamondback and the one which installs electric are slightly different?
I will appreciate any help!