aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Action.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Action.hpp')
-rw-r--r--src/engine/Action.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/Action.hpp b/src/engine/Action.hpp
index 1dc13fc..0201380 100644
--- a/src/engine/Action.hpp
+++ b/src/engine/Action.hpp
@@ -43,8 +43,7 @@ struct Action
class PrintAction : public Action
{
public:
- PrintAction(const std::string& msg)
- : _msg(msg) {}
+ explicit PrintAction(const std::string& msg) : _msg(msg) {}
void execute(MIDISink* sink, Raul::TimeStamp time)
{ std::cout << "t=" << time << ": " << _msg << std::endl; }