Index: tools/gn/setup.h |
diff --git a/tools/gn/setup.h b/tools/gn/setup.h |
index 444805964e4f7573513aa561acd7bacf87df7f8c..e3607503f1f9e9c4135c54b344e34a9d5b6d4359 100644 |
--- a/tools/gn/setup.h |
+++ b/tools/gn/setup.h |
@@ -210,8 +210,8 @@ class DependentSetup : public CommonSetup { |
// Note: this could be one function that takes a CommonSetup*, but then |
// the compiler can get confused what to call, since it also matches the |
// default copy constructor. |
- DependentSetup(Setup* derive_from); |
- DependentSetup(DependentSetup* derive_from); |
+ explicit DependentSetup(Setup* derive_from); |
+ explicit DependentSetup(DependentSetup* derive_from); |
~DependentSetup() override; |
// These are the two parts of Run() in the regular setup, not including the |