Skip to content
Closed
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
9 changes: 0 additions & 9 deletions src/node_crypto.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -75,15 +75,6 @@ struct MarkPopErrorOnReturn{
~MarkPopErrorOnReturn(){ERR_pop_to_mark()}
};

template <typename T, void (*function)(T*)>
structFunctionDeleter{
voidoperator()(T* pointer) const{function(pointer)}
typedef std::unique_ptr<T, FunctionDeleter> Pointer;
};

template <typename T, void (*function)(T*)>
using DeleteFnPtr = typename FunctionDeleter<T, function>::Pointer;

// Define smart pointers for the most commonly used OpenSSL types:
using X509Pointer = DeleteFnPtr<X509, X509_free>
using BIOPointer = DeleteFnPtr<BIO, BIO_free_all>
Expand Down
9 changes: 9 additions & 0 deletions src/util.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -456,6 +456,15 @@ struct is_callable<T, typename std::enable_if<
std::is_same<decltype(void(&T::operator())), void>::value
>::type> : std::true_type{};

template <typename T, void (*function)(T*)>
structFunctionDeleter{
voidoperator()(T* pointer) const{function(pointer)}
typedef std::unique_ptr<T, FunctionDeleter> Pointer;
};

template <typename T, void (*function)(T*)>
using DeleteFnPtr = typename FunctionDeleter<T, function>::Pointer;

} // namespace node

#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
Expand Down