summaryrefslogtreecommitdiff
path: root/cross-project-tests
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2022-07-12 01:40:57 +0000
committerDavid Blaikie <dblaikie@gmail.com>2022-07-12 01:41:10 +0000
commit4ca205855267191ccfd191539cf4b3ed792a4257 (patch)
treeabdb97cc888b25a4eef097b82dd6f32d746ea746 /cross-project-tests
parentfe6a391357fcf0823a97a9a3814572655c3b3b74 (diff)
downloadllvm-4ca205855267191ccfd191539cf4b3ed792a4257.tar.gz
Add missing include for std::size_t
Diffstat (limited to 'cross-project-tests')
-rw-r--r--cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp
index b68d4e8c04b9..3990c2809e2e 100644
--- a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp
+++ b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp
@@ -8,6 +8,7 @@
// RUN: | llvm-dwarfdump --verify -
#include <cstdint>
+#include <cstddef>
template<typename ...Ts>
struct t1 {
};