[openrtm-commit:02211] r2828 - branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/common
openrtm @ openrtm.org
openrtm @ openrtm.org
2017年 1月 13日 (金) 14:47:10 JST
Author: sec_fukai
Date: 2017-01-13 14:47:09 +0900 (Fri, 13 Jan 2017)
New Revision: 2828
Modified:
branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/common/Logger.h
Log:
[compat,->DEV_IQ_2016] Convert it++ to ++it. refs #3789
Modified: branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/common/Logger.h
===================================================================
--- branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/common/Logger.h 2017-01-13 03:00:28 UTC (rev 2827)
+++ branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/common/Logger.h 2017-01-13 05:47:09 UTC (rev 2828)
@@ -163,7 +163,7 @@
bool removeStream(streambuf_type* stream)
{
std::vector<coil::log_streambuf<char>::Stream>::iterator it;
- for( it = m_streams.begin(); it != m_streams.end(); it++ )
+ for( it = m_streams.begin(); it != m_streams.end(); ++it )
{
if (it->stream_ == stream)
{
More information about the openrtm-commit
mailing list