From 109b78a6d6c42a665ce9a86a2aca4166eadb0957 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 20 Mar 2019 23:48:34 -0400 Subject: [PATCH] common/bit_util: Fix bad merge duplicating the copy constructor Introduced as a result of #2090, we already define the copy constructor further down below, so this isn't needed. --- src/common/bit_field.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/bit_field.h b/src/common/bit_field.h index 8e35c463f..902e668e3 100644 --- a/src/common/bit_field.h +++ b/src/common/bit_field.h @@ -125,8 +125,6 @@ private: using StorageTypeWithEndian = typename AddEndian::type; public: - BitField& operator=(const BitField&) = default; - /// Constants to allow limited introspection of fields if needed static constexpr std::size_t position = Position; static constexpr std::size_t bits = Bits;