From 5b61ba00666a5dd1c974735c10162b5bcf1c8ade Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Fri, 10 Nov 2023 21:46:51 +0000 Subject: [PATCH] fix: delete copy constructor for FromJsonObjectSchema --- awkward-cpp/include/awkward/io/json.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/awkward-cpp/include/awkward/io/json.h b/awkward-cpp/include/awkward/io/json.h index 6eaf19735f..eb45499cde 100644 --- a/awkward-cpp/include/awkward/io/json.h +++ b/awkward-cpp/include/awkward/io/json.h @@ -61,6 +61,9 @@ namespace awkward { int64_t initial, double resize); + // Delete copy constructor + FromJsonObjectSchema(const FromJsonObjectSchema&) = delete; + /// @brief HERE inline int64_t current_stack_depth() const noexcept { return current_stack_depth_;