Kill FOLLY_ALIGNED etc
[folly.git] / folly / concurrency / UnboundedQueue.h
index 221e73ce728fd4e153ae18f1ecb0c3b52da255dd..1aa2f4160e293da92180e5c2bf16f1cee7883364 100644 (file)
@@ -648,8 +648,7 @@ class UnboundedQueue {
     Atom<Segment*> next_;
     const Ticket min_;
     bool marked_; // used for iterative deletion
-    FOLLY_ALIGNED(Align)
-    Entry b_[SegmentSize];
+    alignas(Align) Entry b_[SegmentSize];
 
    public:
     explicit Segment(const Ticket t)