From 0d3f3872145e99dc00beadb662e075a3f752d599 Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Sun, 21 Feb 2021 22:27:43 -0600 Subject: [PATCH] Maintenance: performancedata explicit ctor --- src/AIModel/performancedata.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AIModel/performancedata.hxx b/src/AIModel/performancedata.hxx index 88d28fe95..8f1cc9faf 100644 --- a/src/AIModel/performancedata.hxx +++ b/src/AIModel/performancedata.hxx @@ -13,9 +13,9 @@ class PerformanceData { public: PerformanceData(); - - PerformanceData(PerformanceData* clone); - + + explicit PerformanceData(PerformanceData* clone); + void initFromProps(SGPropertyNode* props); ~PerformanceData() = default;