[openrtm-commit:02254] r2861 - in branches/DEV_IQ_2016/OpenRTM-aist/src/lib: coil/common coil/posix/coil rtm

openrtm @ openrtm.org openrtm @ openrtm.org
2017年 1月 18日 (水) 16:01:00 JST


Author: sec_fukai
Date: 2017-01-18 16:01:00 +0900 (Wed, 18 Jan 2017)
New Revision: 2861

Modified:
   branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/common/Logger.h
   branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/posix/coil/Time.h
   branches/DEV_IQ_2016/OpenRTM-aist/src/lib/rtm/RingBuffer.h
Log:
[compat,->DEV_IQ_2016]Modify include order. refs #3810

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-18 05:52:36 UTC (rev 2860)
+++ branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/common/Logger.h	2017-01-18 07:01:00 UTC (rev 2861)
@@ -23,9 +23,9 @@
 #include <coil/Mutex.h>
 #include <coil/Guard.h>
 
+#include <limits.h>
 #include <fstream>
 #include <iostream>
-#include <limits.h>
 #include <string>
 #include <utility>
 #include <vector>

Modified: branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/posix/coil/Time.h
===================================================================
--- branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/posix/coil/Time.h	2017-01-18 05:52:36 UTC (rev 2860)
+++ branches/DEV_IQ_2016/OpenRTM-aist/src/lib/coil/posix/coil/Time.h	2017-01-18 07:01:00 UTC (rev 2861)
@@ -24,9 +24,9 @@
 
 #include <sys/time.h>
 #include <sys/types.h>
+#include <unistd.h>
 #include <time.h>
 #include <iostream>
-#include <unistd.h>
 
 namespace coil
 {

Modified: branches/DEV_IQ_2016/OpenRTM-aist/src/lib/rtm/RingBuffer.h
===================================================================
--- branches/DEV_IQ_2016/OpenRTM-aist/src/lib/rtm/RingBuffer.h	2017-01-18 05:52:36 UTC (rev 2860)
+++ branches/DEV_IQ_2016/OpenRTM-aist/src/lib/rtm/RingBuffer.h	2017-01-18 07:01:00 UTC (rev 2861)
@@ -19,7 +19,6 @@
 
 #ifndef RTC_RINGBUFFER_H
 #define RTC_RINGBUFFER_H
-#include <vector>
 
 #include <coil/TimeValue.h>
 #include <coil/Mutex.h>
@@ -33,6 +32,7 @@
 #include <algorithm>
 #include <iostream>
 #include <string>
+#include <vector>
 
 #define RINGBUFFER_DEFAULT_LENGTH 8
 /*!



More information about the openrtm-commit mailing list