summaryrefslogtreecommitdiffhomepage
path: root/StarsEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-07 00:53:22 +0200
committerAki <please@ignore.pl>2022-04-07 00:53:22 +0200
commit08a3e6cea1e779a39f34c93a8e7fd85ee6da40b6 (patch)
tree1fea7a446e7fe04a680d405c8d39be63c7fed9d2 /StarsEx
parent6466c06e44684952dd28cd5a6ac3968bdb81646e (diff)
downloadstarshatter-08a3e6cea1e779a39f34c93a8e7fd85ee6da40b6.zip
starshatter-08a3e6cea1e779a39f34c93a8e7fd85ee6da40b6.tar.gz
starshatter-08a3e6cea1e779a39f34c93a8e7fd85ee6da40b6.tar.bz2
Added void return type for = overload
Diffstat (limited to 'StarsEx')
-rw-r--r--StarsEx/ContentBundle.h2
1 files changed, 1 insertions, 1 deletions
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;