From 1b517f2b23036e23f8c28d35ab2594ae8398e296 Mon Sep 17 00:00:00 2001 From: Sammy Newhide Date: Mon, 5 May 2025 16:43:20 -0700 Subject: [PATCH] Remove explicit default constructor for Accessor Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tiny_gltf.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tiny_gltf.h b/tiny_gltf.h index b0eac71..e9a7ebc 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -898,7 +898,6 @@ struct Accessor { // unreachable return 0; } - Accessor() = default; DEFAULT_METHODS(Accessor) bool operator==(const tinygltf::Accessor &) const; };