Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
stuerp committed Dec 31, 2024
1 parent c198020 commit ee72253
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HostObjectImplLibrary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ STDMETHODIMP HostObject::cloneMetaDBHandleList(__int64 list, __int64 * clone)

auto List = (const metadb_handle_list *) list;

*clone = (__int64) new metadb_handle_list(*List);
*clone = (__int64) (size_t) new metadb_handle_list(*List);

return S_OK;
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ To create the component first build the x86 configuration and next the x64 confi

## Change Log

v0.3.0.0-alpha2, 2024-12-xx
v0.3.0.0-alpha2, 2024-12-31

* New:
* Methods
Expand Down

0 comments on commit ee72253

Please sign in to comment.