From d18d83881265714f0ef3d859449e0e5a44450b43 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Thu, 24 Jun 2021 16:18:11 +0200 Subject: [PATCH] Fix formatting --- code/AssetLib/glTF2/glTF2Asset.h | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/code/AssetLib/glTF2/glTF2Asset.h b/code/AssetLib/glTF2/glTF2Asset.h index 25e917712..605cda332 100644 --- a/code/AssetLib/glTF2/glTF2Asset.h +++ b/code/AssetLib/glTF2/glTF2Asset.h @@ -388,16 +388,18 @@ struct CustomExtension { } CustomExtension() = default; - - CustomExtension(const CustomExtension &other) - : name(other.name) - , mStringValue(other.mStringValue) - , mDoubleValue(other.mDoubleValue) - , mUint64Value(other.mUint64Value) - , mInt64Value(other.mInt64Value) - , mBoolValue(other.mBoolValue) - , mValues(other.mValues) - { + + ~CustomExtension() = default; + + CustomExtension(const CustomExtension &other) : + name(other.name), + mStringValue(other.mStringValue), + mDoubleValue(other.mDoubleValue), + mUint64Value(other.mUint64Value), + mInt64Value(other.mInt64Value), + mBoolValue(other.mBoolValue), + mValues(other.mValues) { + // empty } };