From 9d53305516f3ac6575fead79d934f656c91f4513 Mon Sep 17 00:00:00 2001 From: Evan Tschannen <36455792+etschannen@users.noreply.github.com> Date: Sat, 2 Mar 2019 08:30:10 -0800 Subject: [PATCH] Make GetHealthMetricsRequest constructor explicit Co-Authored-By: tclinken --- fdbclient/MasterProxyInterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdbclient/MasterProxyInterface.h b/fdbclient/MasterProxyInterface.h index 8775115264..cf3561bbd5 100644 --- a/fdbclient/MasterProxyInterface.h +++ b/fdbclient/MasterProxyInterface.h @@ -239,7 +239,7 @@ struct GetHealthMetricsRequest ReplyPromise reply; bool detailed; - GetHealthMetricsRequest(bool detailed = false) : detailed(detailed) {} + explicit GetHealthMetricsRequest(bool detailed = false) : detailed(detailed) {} template void serialize(Ar& ar)