We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
template <typename T, typename... Args> inline OwnPtr<T> make_ptr(Args&&... args) { OwnPtr<T> ret; ret.template New<Args...>(forward(args)...); return ret; }
This serves as an helper to construct an OwnPtr object, which is used to manipulate RAII objects inside the kernel.
OwnPtr