diff options
author | David Robillard <d@drobilla.net> | 2020-07-18 12:02:29 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-01 11:50:43 +0200 |
commit | 727020da03e5212e803373c20a4fbd9b4e51b55c (patch) | |
tree | f70be41bbf1cab63c822bd9e9bd41ab410aadd1a /src | |
parent | f91c823b73ad74fe9d1b6785ec6c17db1713ca35 (diff) | |
download | ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.tar.gz ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.tar.bz2 ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.zip |
Remove superfluous semicolons
Diffstat (limited to 'src')
-rw-r--r-- | src/server/Event.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/Event.hpp b/src/server/Event.hpp index b2477ce8..9c284e49 100644 --- a/src/server/Event.hpp +++ b/src/server/Event.hpp @@ -63,7 +63,7 @@ public: }; /** Claim position in undo stack before pre-processing (non-realtime). */ - virtual void mark(PreProcessContext&) {}; + virtual void mark(PreProcessContext&) {} /** Pre-process event before execution (non-realtime). */ virtual bool pre_process(PreProcessContext& ctx) = 0; |