| 305 | } |
| 306 | |
| 307 | VeryAligned(int value) MOODYCAMEL_NOEXCEPT : value(value) { |
| 308 | if (reinterpret_cast<uintptr_t>(this) % SUPER_ALIGNMENT != 0) |
| 309 | ++errors; |
| 310 | } |
| 311 | |
| 312 | VeryAligned(VeryAligned&& x) MOODYCAMEL_NOEXCEPT : value(x.value) { |
| 313 | if (reinterpret_cast<uintptr_t>(this) % SUPER_ALIGNMENT != 0) |