summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-07-25 17:32:51 +0000
committerChris Lattner <sabre@nondot.org>2003-07-25 17:32:51 +0000
commitb5b3c6fc0147b2e59b45f7f2882c7c615bb765ae (patch)
treebdeaeb017e55a25ceb33f8545908c284c0a6c676 /utils
parenta44a4cd055bdad9f324d2d9a1b04bdc0bb1b2519 (diff)
downloadllvm-b5b3c6fc0147b2e59b45f7f2882c7c615bb765ae.tar.gz
llvm-b5b3c6fc0147b2e59b45f7f2882c7c615bb765ae.tar.bz2
llvm-b5b3c6fc0147b2e59b45f7f2882c7c615bb765ae.tar.xz
Use C++ headers, not C headers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7308 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/Record.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h
index 0118ff1f42..73b5c74102 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -10,7 +10,7 @@
#include <vector>
#include <map>
#include <iostream>
-#include <assert.h>
+#include <cassert>
class Init;
class UnsetInit;