From 0f29352aa0bf862419a89704d6bc731e60074c52 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 17 Jun 2018 21:53:37 +0200 Subject: [PATCH] Declare const member functions that do not modify the object --- src/core/receiver/gnss_flowgraph.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/receiver/gnss_flowgraph.h b/src/core/receiver/gnss_flowgraph.h index 638b81305..5da90cd1f 100644 --- a/src/core/receiver/gnss_flowgraph.h +++ b/src/core/receiver/gnss_flowgraph.h @@ -107,17 +107,17 @@ public: void set_configuration(std::shared_ptr configuration); - unsigned int applied_actions() + unsigned int applied_actions() const { return applied_actions_; } - bool connected() + bool connected() const { return connected_; } - bool running() + bool running() const { return running_; }