diff options
author | Dan Albert <danalbert@google.com> | 2014-08-29 16:09:32 +0000 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-08-29 16:09:32 +0000 |
commit | e5f15210fb3282bf7d98aa1a3d88a64a2e68147d (patch) | |
tree | e43a48fc06b2eacb08feaf8b9d98f862e39f5bdc /libcxxabi/test/backtrace_test.cpp | |
parent | b71e89e9afe62137e6095bb8649412ca6be8c7e8 (diff) | |
download | bcm5719-llvm-e5f15210fb3282bf7d98aa1a3d88a64a2e68147d.tar.gz bcm5719-llvm-e5f15210fb3282bf7d98aa1a3d88a64a2e68147d.zip |
Add missing include to a test case.
Some platforms get size_t defined transitively by another include, but
Android does not.
llvm-svn: 216738
Diffstat (limited to 'libcxxabi/test/backtrace_test.cpp')
-rw-r--r-- | libcxxabi/test/backtrace_test.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxxabi/test/backtrace_test.cpp b/libcxxabi/test/backtrace_test.cpp index 25dccb3229e..df291c96969 100644 --- a/libcxxabi/test/backtrace_test.cpp +++ b/libcxxabi/test/backtrace_test.cpp @@ -7,6 +7,7 @@ // //===----------------------------------------------------------------------===// #include <assert.h> +#include <stddef.h> #include <unwind.h> extern "C" _Unwind_Reason_Code |