MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / VeryAligned

Function VeryAligned

tests/unittests/unittests.cpp:307–310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 1

unittests.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected