From b2a587af967e50078734fa55951e61a2f928b9db Mon Sep 17 00:00:00 2001 From: Paolo Jovon Date: Sat, 7 Jul 2018 21:50:01 +0200 Subject: [PATCH] Fixed C++11 compliance of previous commit --- tiny_gltf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiny_gltf.h b/tiny_gltf.h index 6fc7b8a..40f1d38 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -793,7 +793,7 @@ struct FsCallbacks ReadWholeFileFunction ReadWholeFile; WriteWholeFileFunction WriteWholeFile; - void* user_data = nullptr; // An argument that is passed to all fs callbacks + void* user_data; // An argument that is passed to all fs callbacks }; #ifndef TINYGLTF_NO_FS