Skip to content
Merged
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
3 changes: 2 additions & 1 deletion include/CppInterOp/CppInterOp.h
Original file line number Diff line number Diff line change
Expand Up @@ -921,12 +921,13 @@ CPPINTEROP_API TCppObject_t Construct(TCppScope_t scope, void* arena = nullptr,
/// Destroys one or more objects of a class
/// \param[in] This this pointer of the object to destruct. Can also be the
/// starting address of an array of objects
/// \param[in] scope Class to destruct
/// \param[in] withFree if true, we call operator delete/free, else just the
/// destructor
/// \param[in] count indicate the number of objects to destruct, if \c This
/// points to an array of objects
/// \returns true if wrapper generation and invocation succeeded.
CPPINTEROP_API bool Destruct(TCppObject_t This, TCppConstScope_t type,
CPPINTEROP_API bool Destruct(TCppObject_t This, TCppConstScope_t scope,
bool withFree = true, TCppIndex_t count = 0UL);

/// @name Stream Redirection
Expand Down
Loading