Skip to content
Open
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
3 changes: 2 additions & 1 deletion interpreter/CppInterOp/include/CppInterOp/CppInterOp.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ using TCppIndex_t = size_t;
using TCppScope_t = void*;
using TCppConstScope_t = const void*;
using TCppType_t = void*;
using TCppConstType_t = const void*;
using TCppFunction_t = void*;
using TCppConstFunction_t = const void*;
using TCppFuncAddr_t = void*;
Expand Down Expand Up @@ -368,7 +369,7 @@ CPPINTEROP_API bool IsComplete(TCppScope_t scope);
CPPINTEROP_API size_t SizeOf(TCppScope_t scope);

/// Checks if it is a "built-in" or a "complex" type.
CPPINTEROP_API bool IsBuiltin(TCppType_t type);
CPPINTEROP_API bool IsBuiltin(TCppConstType_t type);

/// Checks if it is a templated class.
CPPINTEROP_API bool IsTemplate(TCppScope_t handle);
Expand Down
Loading
Loading