From c341f218b3bfe18f960ddaefe51f1cb078e366fb Mon Sep 17 00:00:00 2001 From: Janosch Machowinski Date: Mon, 15 Apr 2024 16:16:59 +0200 Subject: [PATCH] made is_spinning not virtual --- rclcpp/include/rclcpp/executor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rclcpp/include/rclcpp/executor.hpp b/rclcpp/include/rclcpp/executor.hpp index 4a4d7b20af..58e6fc5b9c 100644 --- a/rclcpp/include/rclcpp/executor.hpp +++ b/rclcpp/include/rclcpp/executor.hpp @@ -376,7 +376,7 @@ class Executor * \return True if the executor is currently spinning. */ RCLCPP_PUBLIC - virtual bool + bool is_spinning(); protected: