From e87656fd12172703eb2f54f161579efe92b88faf Mon Sep 17 00:00:00 2001 From: Hayodea Hakol Date: Tue, 22 Jul 2025 05:50:19 -0400 Subject: [PATCH] Fix build error from non-POD initializer list --- include/user/senseApiDesc.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/user/senseApiDesc.h b/include/user/senseApiDesc.h index b4d421c..4fc392a 100644 --- a/include/user/senseApiDesc.h +++ b/include/user/senseApiDesc.h @@ -51,11 +51,6 @@ public: class ExportedImplexorApiDesc { public: - ExportedImplexorApiDesc(const std::string name) - // The caller should sanity check before calling this constructor. - : name(name) - {} - static bool sanityCheck(const ExportedImplexorApiDesc &desc) { if (desc.name.empty()) { return false; } @@ -67,8 +62,6 @@ public: }; public: - SenseApiDesc() = default; - std::string stringify() const { std::string result = "Name: " + name + "\n";