Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions library/DataIdentity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ namespace df {
OPAQUE_IDENTITY_TRAITS(std::optional<std::function<void()> >);
OPAQUE_IDENTITY_TRAITS(std::variant<std::string, std::function<void()> >);
OPAQUE_IDENTITY_TRAITS(std::weak_ptr<df::widget_container>);
OPAQUE_IDENTITY_TRAITS(std::filesystem::file_time_type);
OPAQUE_IDENTITY_TRAITS(wchar_t*);

const buffer_container_identity buffer_container_identity::base_instance;
Expand Down
1 change: 1 addition & 0 deletions library/include/DataIdentity.h
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,7 @@ namespace df
OPAQUE_IDENTITY_TRAITS(std::optional<std::function<void()> >);
OPAQUE_IDENTITY_TRAITS(std::variant<std::string, std::function<void()> >);
OPAQUE_IDENTITY_TRAITS(std::weak_ptr<df::widget_container>);
OPAQUE_IDENTITY_TRAITS(std::filesystem::file_time_type);

#ifdef BUILD_DFHACK_LIB
template<typename T>
Expand Down
Loading