From 08a3e6cea1e779a39f34c93a8e7fd85ee6da40b6 Mon Sep 17 00:00:00 2001 From: Aki Date: Thu, 7 Apr 2022 00:53:22 +0200 Subject: Added void return type for = overload --- StarsEx/ContentBundle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'StarsEx') diff --git a/StarsEx/ContentBundle.h b/StarsEx/ContentBundle.h index f94e0d9..ffcc7e1 100644 --- a/StarsEx/ContentBundle.h +++ b/StarsEx/ContentBundle.h @@ -38,7 +38,7 @@ public: ContentBundle(ContentBundle&& that) = delete; ContentBundle(const ContentBundle& that) = delete; - operator = (const ContentBundle& that) = delete; + void operator = (const ContentBundle& that) = delete; const Text& GetName() const { return name; } Text GetText(const char* key) const; -- cgit v1.1