mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
9fbc577be7
The compiler was warning about member initialization order mismatch. C++ initializes members in the order they are declared in the class, not the order they appear in the initializer list. Fixed by reordering member declarations to match the initialization order needed: m_doc must be initialized before m_parser since we need to call parser.iterate() before moving the parser. This fixes the -Werror=reorder compilation error in CI. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>