diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-07-11 09:37:56 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-07-11 09:37:56 +0000 |
| commit | 4c50ea27bfc0c21a5caf78dde9f9906901112105 (patch) | |
| tree | 720b9a6aba439fab58ef4947e3ba409346526d92 /libcxxabi/test/test_vector3.cpp | |
| parent | ceefe513648c01c5d50f1f9bb8e3a0364522e09e (diff) | |
| download | bcm5719-llvm-4c50ea27bfc0c21a5caf78dde9f9906901112105.tar.gz bcm5719-llvm-4c50ea27bfc0c21a5caf78dde9f9906901112105.zip | |
Add missing #include <stdlib.h> into test which uses ::exit.
llvm-svn: 160039
Diffstat (limited to 'libcxxabi/test/test_vector3.cpp')
| -rw-r--r-- | libcxxabi/test/test_vector3.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcxxabi/test/test_vector3.cpp b/libcxxabi/test/test_vector3.cpp index 39368376671..3855027b5a2 100644 --- a/libcxxabi/test/test_vector3.cpp +++ b/libcxxabi/test/test_vector3.cpp @@ -10,6 +10,7 @@ #include "cxxabi.h" #include <stdio.h> +#include <stdlib.h> #include <assert.h> #include <exception> @@ -54,4 +55,4 @@ int main( int argc, char *argv []) __cxxabiv1::__cxa_vec_dtor(a, 10, sizeof(test1::A), destroy<test1::A>); assert(false); } -}
\ No newline at end of file +} |

