summaryrefslogtreecommitdiff
path: root/src/resources/action.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-29 20:28:00 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-29 20:28:00 +0300
commit83958df001482b940812080db776efd2cf3c2d91 (patch)
treeaafe2acfa64bee1dd33ec9fc7a19dccd41c5d7d3 /src/resources/action.h
parent3fca67011281a84d04b0b07dfea1206e964e42e9 (diff)
downloadplus-83958df001482b940812080db776efd2cf3c2d91.tar.gz
plus-83958df001482b940812080db776efd2cf3c2d91.tar.bz2
plus-83958df001482b940812080db776efd2cf3c2d91.tar.xz
plus-83958df001482b940812080db776efd2cf3c2d91.zip
Add missing explicit keyword in Action.
Diffstat (limited to 'src/resources/action.h')
-rw-r--r--src/resources/action.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/action.h b/src/resources/action.h
index e6762302f..55a2ed12d 100644
--- a/src/resources/action.h
+++ b/src/resources/action.h
@@ -39,7 +39,7 @@ class Animation;
class Action final : public MemoryCounter
{
public:
- Action(const std::string &name) noexcept;
+ explicit Action(const std::string &name) noexcept;
A_DELETE_COPY(Action)