# This directory contains vendored third-party code used unmodified:
#   - atomicops.h, readerwriterqueue.h: moodycamel's lock-free queue
#     (https://github.com/cameron314/readerwriterqueue)
#
# Disabled entirely rather than filtered: this is dense, hand-tuned
# lock-free concurrency code with its own upstream test suite. Applying our
# application-level style/safety checks to it and "fixing" the findings
# (uninitialized cache-line padding members, enums sized for cache
# alignment, self-assignment handling intentionally omitted for
# performance) would very likely introduce real concurrency bugs in code
# we don't have the specialized test coverage to safely modify. If a
# vendored file genuinely needs a change, update it via the upstream
# project and re-vendor, don't patch it locally to satisfy a linter.
Checks: '-*'
