summaryrefslogtreecommitdiffstats
path: root/ganv/Module.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-15 18:55:03 +0100
committerDavid Robillard <d@drobilla.net>2020-12-15 19:32:26 +0100
commit7bc3e5ca81642996fae52e4d8ca6add67b994eaf (patch)
tree857c75460b5ddb10a582bdac860048e59fa0cb30 /ganv/Module.hpp
parentde277295f7e879eba882b158015ba99486b142a5 (diff)
downloadganv-7bc3e5ca81642996fae52e4d8ca6add67b994eaf.tar.gz
ganv-7bc3e5ca81642996fae52e4d8ca6add67b994eaf.tar.bz2
ganv-7bc3e5ca81642996fae52e4d8ca6add67b994eaf.zip
Use explicit conversions
Diffstat (limited to 'ganv/Module.hpp')
-rw-r--r--ganv/Module.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ganv/Module.hpp b/ganv/Module.hpp
index 343b815..cfe9407 100644
--- a/ganv/Module.hpp
+++ b/ganv/Module.hpp
@@ -70,7 +70,7 @@ public:
public:
iterator_base(GanvModule* m, guint i) : _module(m), _index(i) {}
template<typename T, typename U>
- iterator_base(const iterator_base<T, U>& i)
+ explicit iterator_base(const iterator_base<T, U>& i)
: _module(i._module)
, _index(i._index)
{}