Fix some warnings in the gltfio android jni code

This commit is contained in:
Nicklas Ansman Giertz
2019-11-03 10:19:45 -05:00
committed by Philip Rideout
parent e252558ef6
commit 73a4431a34
4 changed files with 9 additions and 9 deletions

View File

@@ -28,7 +28,7 @@ using namespace filament;
using namespace gltfio;
using namespace utils;
static void destroy(void* data, size_t size, void *userData) {
static void destroy(void*, size_t, void *userData) {
AutoBuffer* buffer = (AutoBuffer*) userData;
delete buffer;
}