summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-07-19 01:59:33 +0200
committerkdx <kikoodx@paranoici.org>2023-07-19 01:59:33 +0200
commit3468ac60874e30b731cea9d950add522d996d915 (patch)
treed5f8cc8733b8bfbd37558fc362f005abdbdcb264
parent3fdbdbdce406ee9f5ecddb15cf1b8897898c4b61 (diff)
downloadfld-main.tar.gz
make FLD constructors explicitHEADmain
-rw-r--r--src/FLD.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FLD.hpp b/src/FLD.hpp
index 9d4e879..a9aed5e 100644
--- a/src/FLD.hpp
+++ b/src/FLD.hpp
@@ -94,8 +94,8 @@ public:
READONLY(unsigned long, tick, 0);
READONLY(Color, drawColor, Color({0, 0, 0, 1}));
public:
- FLD(const Config& config);
- FLD(const Config&& config);
+ explicit FLD(const Config& config);
+ explicit FLD(const Config&& config);
~FLD();
[[nodiscard]] Error init();