Kill FOLLY_ALIGNED etc
[folly.git] / folly / concurrency / detail / ConcurrentHashMap-detail.h
index 51c1375b0fac326a9cd1d1a389e4967676a86754..99b1ee490ee43ff17b4a28f64a22bcbed6cb5d28 100644 (file)
@@ -197,7 +197,7 @@ template <
     typename Allocator = std::allocator<uint8_t>,
     template <typename> class Atom = std::atomic,
     class Mutex = std::mutex>
-class FOLLY_ALIGNED(64) ConcurrentHashMapSegment {
+class alignas(64) ConcurrentHashMapSegment {
   enum class InsertType {
     DOES_NOT_EXIST, // insert/emplace operations.  If key exists, return false.
     MUST_EXIST, // assign operations.  If key does not exist, return false.