From 78ce5e79017b3401b789f31726da9c3b89f0f071 Mon Sep 17 00:00:00 2001 From: Nicholas Frechette Date: Fri, 25 Feb 2022 21:58:35 -0500 Subject: [PATCH] style(tools): make struct final to match the others --- tools/acl_compressor/sources/validate_database.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/acl_compressor/sources/validate_database.cpp b/tools/acl_compressor/sources/validate_database.cpp index 58c08d58..16bea86c 100644 --- a/tools/acl_compressor/sources/validate_database.cpp +++ b/tools/acl_compressor/sources/validate_database.cpp @@ -40,7 +40,7 @@ using namespace acl; #if defined(ACL_USE_SJSON) && defined(ACL_HAS_ASSERT_CHECKS) -struct debug_transform_decompression_settings_with_db : public acl::debug_transform_decompression_settings +struct debug_transform_decompression_settings_with_db final : public acl::debug_transform_decompression_settings { using database_settings_type = acl::debug_database_settings; };