gen: Make MoreThanXStatements single-arg constructor explicit [nfc]

This commit is contained in:
David Nadlinger 2016-09-03 00:34:10 +01:00
parent 8a9c7cf463
commit f5e705655a

View file

@ -30,7 +30,7 @@ struct MoreThanXStatements : public StoppableVisitor {
/// The statement count.
unsigned count;
MoreThanXStatements(unsigned X) : threshold(X), count(0) {}
explicit MoreThanXStatements(unsigned X) : threshold(X), count(0) {}
using StoppableVisitor::visit;