Skip to content

Commit 69cd85b

Browse files
anerokhidavidrohr
authored andcommitted
Workaround for readability-braces-around-statements bug
1 parent cf7d568 commit 69cd85b

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

GPU/GPUTracking/Global/GPUChainTracking.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class GPUChainTracking : public GPUChain, GPUReconstructionHelpers::helperDelega
8787
InOutMemory();
8888
~InOutMemory();
8989
InOutMemory(InOutMemory&&);
90-
InOutMemory& operator=(InOutMemory&&);
90+
InOutMemory& operator=(InOutMemory&&) = default;
9191

9292
std::unique_ptr<unsigned long long int[]> tpcZSpages;
9393
std::unique_ptr<char[]> tpcZSpagesChar; // Same as above, but as char (needed for reading dumps, but deprecated, since alignment can be wrong)

GPU/GPUTracking/Global/GPUChainTrackingIO.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ static constexpr char DUMP_HEADER[DUMP_HEADER_SIZE + 1] = "CAv1";
6565
GPUChainTracking::InOutMemory::InOutMemory() = default;
6666
GPUChainTracking::InOutMemory::~InOutMemory() = default;
6767
GPUChainTracking::InOutMemory::InOutMemory(GPUChainTracking::InOutMemory&&) = default;
68-
GPUChainTracking::InOutMemory& GPUChainTracking::InOutMemory::operator=(GPUChainTracking::InOutMemory&&) = default;
6968

7069
void GPUChainTracking::DumpData(const char* filename)
7170
{

0 commit comments

Comments
 (0)