aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/SourceManager.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-07-12 15:32:57 +0000
committerChris Lattner <sabre@nondot.org>2007-07-12 15:32:57 +0000
commit9dc62f044a6ba21f503bd56607d94b32704e7945 (patch)
tree9228bf3936fbeca8c864a39d354a41c8467f884c /include/clang/Basic/SourceManager.h
parentf86638365f4801ec2d2970f7c0663e94590618b8 (diff)
Improve portability to compilers where <cassert> is not implicitly
included. Patch contributed by Benoit Boissinot! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceManager.h')
-rw-r--r--include/clang/Basic/SourceManager.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h
index ef0ac0ba98..e7f0d30a1f 100644
--- a/include/clang/Basic/SourceManager.h
+++ b/include/clang/Basic/SourceManager.h
@@ -18,6 +18,7 @@
#include <vector>
#include <map>
#include <list>
+#include <cassert>
namespace llvm {
class MemoryBuffer;