diff options
author | Ameer <aj662@drexel.edu> | 2020-06-21 21:15:58 -0400 |
---|---|---|
committer | Ameer <aj662@drexel.edu> | 2020-06-21 21:17:46 -0400 |
commit | 968d631aa59a0a4e51e219eaa143d2b95593c3e7 (patch) | |
tree | 3429728a2848581b869a038a2da6499a2ca36952 /src/input_common/gcadapter/gc_poller.h | |
parent | 5f0fa4cb8283d61ad2993273fa48b2fd3868a680 (diff) |
std::arrays where appropriate, clear q in adapter class, other touch ups
Diffstat (limited to 'src/input_common/gcadapter/gc_poller.h')
-rw-r--r-- | src/input_common/gcadapter/gc_poller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/gcadapter/gc_poller.h b/src/input_common/gcadapter/gc_poller.h index 29b8c0b7c..31ff1c123 100644 --- a/src/input_common/gcadapter/gc_poller.h +++ b/src/input_common/gcadapter/gc_poller.h @@ -30,7 +30,7 @@ public: void BeginConfiguration(); void EndConfiguration(); - bool IsPolling() { + bool IsPolling() const { return polling; } @@ -50,7 +50,7 @@ public: void BeginConfiguration(); void EndConfiguration(); - bool IsPolling() { + bool IsPolling() const { return polling; } |