[llvm-commits] CVS: llvm/include/Support/Annotation.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Jul 25 12:35:22 PDT 2003
Changes in directory llvm/include/Support:
Annotation.h updated: 1.10 -> 1.11
---
Log message:
Use the C++ <cassert> header, not the C <assert.h> header
---
Diffs of the changes:
Index: llvm/include/Support/Annotation.h
diff -u llvm/include/Support/Annotation.h:1.10 llvm/include/Support/Annotation.h:1.11
--- llvm/include/Support/Annotation.h:1.10 Fri Jul 25 11:47:07 2003
+++ llvm/include/Support/Annotation.h Fri Jul 25 12:34:15 2003
@@ -16,7 +16,7 @@
#define SUPPORT_ANNOTATION_H
#include <string>
-#include <assert.h>
+#include <cassert>
class AnnotationID;
class Annotation;
More information about the llvm-commits
mailing list