Skip to content

Commit 7ee1df3

Browse files
authored
Merge pull request #39 from ethz-asl/cleanup/headerSuffixShouldBeH
Cleanup/header suffix should be h
2 parents 42612ee + de6631a commit 7ee1df3

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

cuckoo_time_translator/include/cuckoo_time_translator/OwtFactory.hpp renamed to cuckoo_time_translator/include/cuckoo_time_translator/OwtFactory.h

File renamed without changes.

cuckoo_time_translator/src/DeviceTimeTranslator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <cuckoo_time_translator/ConvexHullOwt.h>
1717
#include <cuckoo_time_translator/KalmanOwt.h>
1818
#include <cuckoo_time_translator/SwitchingOwt.h>
19-
#include <cuckoo_time_translator/OwtFactory.hpp>
19+
#include <cuckoo_time_translator/OwtFactory.h>
2020
#pragma GCC diagnostic push
2121
#pragma GCC diagnostic ignored "-Wunused-parameter"
2222
#include <cuckoo_time_translator/DeviceTimeTranslatorConfig.h>

cuckoo_time_translator/src/OwtFactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <cuckoo_time_translator/KalmanOwt.h>
33

44
#include <cuckoo_time_translator/DeviceTimeTranslator.h>
5-
#include <cuckoo_time_translator/OwtFactory.hpp>
5+
#include <cuckoo_time_translator/OwtFactory.h>
66

77
namespace cuckoo_time_translator {
88

cuckoo_time_translator/test/TestDeviceTimeTranslatorNode.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ void changeAlgorithm(FilterAlgorithm fa){
5757
filterAlgoParam.value = static_cast<int>(fa);
5858
conf.ints.push_back(filterAlgoParam);
5959

60-
auto ret = ros::service::call("/device_time/set_parameters", srv_req, srv_resp);
61-
std::cout << "ret=" << ret << std::endl; // XXX: debug output of ret
60+
ros::service::call("/device_time/set_parameters", srv_req, srv_resp);
6261
}
6362

6463

0 commit comments

Comments
 (0)