diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-02-06 14:59:28 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-02-06 14:59:28 +0000 |
commit | 53a58106d418db0acfe6a0c0821164158ed1ef2b (patch) | |
tree | fd22d8cf0d3c55a37a095f8329d4966ff5506893 /include/llvm/ADT/UniqueVector.h | |
parent | 8c1a73ad3ffbc121a251b93b0fb4e64187f90645 (diff) |
Fix build error.
UniqueVector.h:66: error: âassertâ was not declared in this scope
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33961 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/UniqueVector.h')
-rw-r--r-- | include/llvm/ADT/UniqueVector.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/UniqueVector.h b/include/llvm/ADT/UniqueVector.h index 8f0e686bf8..f3fd7b1d26 100644 --- a/include/llvm/ADT/UniqueVector.h +++ b/include/llvm/ADT/UniqueVector.h @@ -10,6 +10,7 @@ #ifndef LLVM_ADT_UNIQUEVECTOR_H #define LLVM_ADT_UNIQUEVECTOR_H +#include <cassert> #include <map> #include <vector> |