The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

external: Update jnipp

+5
+4
src/external/jnipp/jnipp.cpp
··· 1480 1480 ((jvalue*) v)->l = env()->NewStringUTF(a); 1481 1481 } 1482 1482 1483 + void valueArg(value_t* v, std::nullptr_t) 1484 + { 1485 + ((jvalue*) v)->l = nullptr; 1486 + } 1483 1487 1484 1488 template <> void cleanupArg<const char*>(value_t* v) 1485 1489 {
+1
src/external/jnipp/jnipp.h
··· 134 134 void valueArg(value_t* v, const char* a); 135 135 void valueArg(value_t* v, const std::wstring& a); 136 136 void valueArg(value_t* v, const wchar_t* a); 137 + void valueArg(value_t* v, std::nullptr_t); 137 138 138 139 inline void args(value_t*) {} 139 140