[openrtm-commit:03020] r3148 - trunk/OpenRTM-aist/src/lib/rtm
openrtm @ openrtm.org
openrtm @ openrtm.org
2017年 12月 14日 (木) 15:15:35 JST
Author: miyamoto
Date: 2017-12-14 15:15:34 +0900 (Thu, 14 Dec 2017)
New Revision: 3148
Modified:
trunk/OpenRTM-aist/src/lib/rtm/RTObject.cpp
Log:
[compat, bugfix, ->RELENG_1_2] bug fix.
Modified: trunk/OpenRTM-aist/src/lib/rtm/RTObject.cpp
===================================================================
--- trunk/OpenRTM-aist/src/lib/rtm/RTObject.cpp 2017-12-13 08:58:27 UTC (rev 3147)
+++ trunk/OpenRTM-aist/src/lib/rtm/RTObject.cpp 2017-12-14 06:15:34 UTC (rev 3148)
@@ -2741,7 +2741,8 @@
getInheritedECOptions(default_opts);
for (size_t i(0); i < ecs_tmp.size(); ++i)
{
- if (coil::normalize(ecs_tmp[i]) == "none")
+ std::string ec_tmp = ecs_tmp[i];
+ if (coil::normalize(ec_tmp) == "none")
{
RTC_INFO(("EC none. EC will not be bound to the RTC."));
ec_args.clear();
More information about the openrtm-commit
mailing list