comparison src/llvm-2-demangle.patch @ 5598:9722214b6722

LLVM: Update to version 8.0.1. * src/llvm.mk: Update version and checksum. Remove unused variable. * src/llvm-2-demangle.patch: Add new patch that adds missing headers. * dist-files.mk: Include new file in list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 11 Dec 2020 20:46:31 +0100
parents
children ac27eba752af
comparison
equal deleted inserted replaced
5597:f367e764ca55 5598:9722214b6722
1 MicrosoftDemangleNodes.h uses `uint8_t` without including `<cstdint>` and
2 std::string` without including `<string>`.
3
4
5 diff --git a/include/llvm/Demangle/MicrosoftDemangleNodes.h b/include/llvm/Demangle/MicrosoftDemangleNodes.h
6 --- a/include/llvm/Demangle/MicrosoftDemangleNodes.h
7 +++ b/include/llvm/Demangle/MicrosoftDemangleNodes.h
8 @@ -4,6 +4,8 @@
9 #include "llvm/Demangle/Compiler.h"
10 #include "llvm/Demangle/StringView.h"
11 #include <array>
12 +#include <cstdint>
13 +#include <string>
14
15 class OutputStream;