Files
source/ext
9c1403b4ec do not hand clang the MSVC-only forward declaration in VFS
vfs_debug.h forward declares std::exception under #ifdef _MSC_VER. clang-cl
defines _MSC_VER too, and rejects the declaration:

    vfs_debug.h(34,15): error: forward declaration of class cannot have a
                               nested name specifier

so any tool built on clang stops at the first file that reaches sgp/DEBUG.H,
which is nearly all of them. Guarding on __clang__ as well leaves the MSVC
build byte for byte identical and lets include-what-you-use parse the tree.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-22 09:14:21 -03:00
..
2023-05-08 06:44:35 -03:00
2023-01-14 02:08:39 -03:00