aboutsummaryrefslogtreecommitdiff
path: root/include/Support
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-07-25 17:34:17 +0000
committerChris Lattner <sabre@nondot.org>2003-07-25 17:34:17 +0000
commitd957518b51ec853a115f277f8c080e6d55b4fd7c (patch)
treede1e842c20f2893719939000acfdd1895bc0ce49 /include/Support
parentb1512d2a7a954d5c7ed7a3937d638f696a3e5116 (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.h2
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;