clang-tidy: partially fix hicpp-explicit-conversions

This commit is contained in:
Daniel Agar
2019-10-27 19:25:34 -04:00
parent a7f330075a
commit 9f4258f6ff
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ public:
struct Iterator {
T node;
Iterator(T v) : node(v) {}
explicit Iterator(T v) : node(v) {}
operator T() const { return node; }
operator T &() { return node; }