From 2ad433b68ff2cf596464ebc898132d123fbf5556 Mon Sep 17 00:00:00 2001 From: Sammy Newhide Date: Mon, 5 May 2025 17:04:52 -0700 Subject: [PATCH] Revert 1b517f2 by adding default constructor for Accessor --- tiny_gltf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tiny_gltf.h b/tiny_gltf.h index e9a7ebc..b0eac71 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -898,6 +898,7 @@ struct Accessor { // unreachable return 0; } + Accessor() = default; DEFAULT_METHODS(Accessor) bool operator==(const tinygltf::Accessor &) const; };