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
2 changes: 2 additions & 0 deletions library/DataIdentity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ namespace df {
INTEGER_IDENTITY_TRAITS(unsigned long, "unsigned long");
INTEGER_IDENTITY_TRAITS(long long, "int64_t");
INTEGER_IDENTITY_TRAITS(unsigned long long, "uint64_t");
INTEGER_IDENTITY_TRAITS(wchar_t, "wchar_t");
FLOAT_IDENTITY_TRAITS(float);
FLOAT_IDENTITY_TRAITS(double);

Expand All @@ -57,6 +58,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(wchar_t*);

const buffer_container_identity buffer_container_identity::base_instance;

Expand Down
2 changes: 2 additions & 0 deletions library/include/DataIdentity.h
Original file line number Diff line number Diff line change
Expand Up @@ -617,8 +617,10 @@ namespace df
INTEGER_IDENTITY_TRAITS(unsigned long);
INTEGER_IDENTITY_TRAITS(long long);
INTEGER_IDENTITY_TRAITS(unsigned long long);
INTEGER_IDENTITY_TRAITS(wchar_t);
FLOAT_IDENTITY_TRAITS(float);
FLOAT_IDENTITY_TRAITS(double);
OPAQUE_IDENTITY_TRAITS(wchar_t*);
OPAQUE_IDENTITY_TRAITS(std::condition_variable);
OPAQUE_IDENTITY_TRAITS(std::fstream);
OPAQUE_IDENTITY_TRAITS(std::mutex);
Expand Down