Merge pull request #161 from ros2/fix_import_symbols

Fix cpplint and windows build
This commit is contained in:
Esteve Fernandez 2015-11-24 10:30:19 -08:00
commit 12859aca2c
2 changed files with 1 additions and 3 deletions

View file

@ -172,7 +172,6 @@ public:
* \param[in] group Callback group to execute this timer's callback in.
*/
template<typename CallbackType>
RCLCPP_PUBLIC
typename rclcpp::timer::WallTimer<CallbackType>::SharedPtr
create_wall_timer(
std::chrono::nanoseconds period,

View file

@ -41,7 +41,7 @@ public:
RCLCPP_SMART_PTR_DEFINITIONS_NOT_COPYABLE(TimerBase);
RCLCPP_PUBLIC
TimerBase(std::chrono::nanoseconds period);
explicit TimerBase(std::chrono::nanoseconds period);
RCLCPP_PUBLIC
virtual ~TimerBase();
@ -142,7 +142,6 @@ public:
void
execute_callback_delegate()
{
//callback_(std::move(std::shared_ptr<TimerBase>(this)));
callback_(*this);
}