Skip to content

Commit 49f81f2

Browse files
yfeldblummeta-codesync[bot]
authored andcommitted
migrate remaining std::aligned_storage_t usage in DistributedMutex
Summary: Migrates `std::aligned_storage_t<48, 8>` to `folly::aligned_storage_t<48, 8>` in `CoalescedTask::storage_` in `DistributedMutex-inl.h`. Reviewed By: ilvokhin Differential Revision: D94614056 fbshipit-source-id: 07e1bfd9aabd41b9e170a912c883d918194b6520
1 parent 44c6391 commit 49f81f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

third-party/folly/src/folly/synchronization/DistributedMutex-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ class Waiter {
353353
// knowledge of the return type and can apply the appropriate
354354
// reinterpret_cast and launder operation to safely retrieve the data from
355355
// this buffer
356-
std::aligned_storage_t<48, 8> storage_;
356+
folly::aligned_storage_t<48, 8> storage_;
357357
};
358358
std::array<std::uint8_t, hardware_destructive_interference_size> padding2;
359359
};

0 commit comments

Comments
 (0)