================ @@ -13,6 +13,7 @@ // RUN: FileCheck %s < %t/GlobalNamespace/Animals.md --check-prefix=MD-ANIMAL // RUN: FileCheck %s < %t/Vehicles/index.md --check-prefix=MD-VEHICLES-LINE // RUN: FileCheck %s < %t/Vehicles/index.md --check-prefix=MD-VEHICLES +#include <cstdint> ---------------- ilovepi wrote:
You can't include standard headers in these tests, as they need to be standalone. If you look through the tests you'll see that we never include anything from the standard lib. You can use a `typedef` or `#define` to the same effect for the numeric types. https://github.com/llvm/llvm-project/pull/181347 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
