summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-04-12 20:18:36 +0200
committerDavid Robillard <d@drobilla.net>2017-04-12 20:22:40 +0200
commit372ac1950628f7ae2f555181c57e3f69b45dbb7d (patch)
tree214e69cccfbbfd86c811baf0af37dd4572bb23b8 /ingen
parent5ead7905fed20333337fa82509e157499c71658a (diff)
downloadingen-372ac1950628f7ae2f555181c57e3f69b45dbb7d.tar.gz
ingen-372ac1950628f7ae2f555181c57e3f69b45dbb7d.tar.bz2
ingen-372ac1950628f7ae2f555181c57e3f69b45dbb7d.zip
Fix const correctness
Diffstat (limited to 'ingen')
-rw-r--r--ingen/EngineBase.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/EngineBase.hpp b/ingen/EngineBase.hpp
index a57743fe..f857f14a 100644
--- a/ingen/EngineBase.hpp
+++ b/ingen/EngineBase.hpp
@@ -66,7 +66,7 @@ public:
/**
Return true iff events are waiting to be processed.
*/
- virtual bool pending_events() = 0;
+ virtual bool pending_events() const = 0;
/**
Flush any pending events.