summaryrefslogtreecommitdiff
path: root/assetFactory/object.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-02-28 01:24:18 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-02-28 01:24:18 +0000
commit7a70e75656d31428c9bbbd51fbf1ca920e577ed1 (patch)
treefcaed03c9b094e8b37d8d787f6695e8306031a3c /assetFactory/object.h
parentSupport for named colours in assets (diff)
downloadilt-7a70e75656d31428c9bbbd51fbf1ca920e577ed1.tar.bz2
ilt-7a70e75656d31428c9bbbd51fbf1ca920e577ed1.tar.xz
ilt-7a70e75656d31428c9bbbd51fbf1ca920e577ed1.zip
Remove to specify if the Selection pointer type is shared or not
Inferred based on whether the pointer is copyable or not.
Diffstat (limited to 'assetFactory/object.h')
-rw-r--r--assetFactory/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/assetFactory/object.h b/assetFactory/object.h
index 1069f66..f3726c7 100644
--- a/assetFactory/object.h
+++ b/assetFactory/object.h
@@ -16,7 +16,7 @@ public:
std::string id;
private:
- friend Persistence::SelectionPtrBase<std::shared_ptr<Object>, true>;
+ friend Persistence::SelectionPtrBase<std::shared_ptr<Object>>;
bool persist(Persistence::PersistenceStore & store) override;
std::string
getId() const override