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.
1 parent cc7ce5c commit 6afa20eCopy full SHA for 6afa20e
include/jni/object.hpp
@@ -23,13 +23,13 @@ namespace jni
23
template < class TagType >
24
class ObjectDeleter;
25
26
- template < class TagType >
+ template < class TagType = ObjectTag >
27
using UniqueObject = std::unique_ptr< const Object<TagType>, ObjectDeleter<TagType> >;
28
29
30
class WeakObjectRefDeleter;
31
32
33
using UniqueWeakObject = std::unique_ptr< const Object<TagType>, WeakObjectRefDeleter<TagType> >;
34
35
template < class TheTag = ObjectTag >
0 commit comments