diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-25 17:34:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-25 17:34:17 +0000 |
commit | d957518b51ec853a115f277f8c080e6d55b4fd7c (patch) | |
tree | de1e842c20f2893719939000acfdd1895bc0ce49 /include/Support | |
parent | b1512d2a7a954d5c7ed7a3937d638f696a3e5116 (diff) |
Use the C++ <cassert> header, not the C <assert.h> header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7310 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support')
-rw-r--r-- | include/Support/Annotation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Support/Annotation.h b/include/Support/Annotation.h index d0eca3d4dc..f4b7c28202 100644 --- a/include/Support/Annotation.h +++ b/include/Support/Annotation.h @@ -16,7 +16,7 @@ #define SUPPORT_ANNOTATION_H #include <string> -#include <assert.h> +#include <cassert> class AnnotationID; class Annotation; |