[llvm-commits] CVS: llvm/include/llvm/ADT/UniqueVector.h

Lauro Ramos Venancio lauro.venancio at gmail.com
Tue Feb 6 07:00:09 PST 2007



Changes in directory llvm/include/llvm/ADT:

UniqueVector.h updated: 1.8 -> 1.9
---
Log message:

Fix build error.
UniqueVector.h:66: error: ‘assert’ was not declared in this scope


---
Diffs of the changes:  (+1 -0)

 UniqueVector.h |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/include/llvm/ADT/UniqueVector.h
diff -u llvm/include/llvm/ADT/UniqueVector.h:1.8 llvm/include/llvm/ADT/UniqueVector.h:1.9
--- llvm/include/llvm/ADT/UniqueVector.h:1.8	Mon Feb  5 17:24:48 2007
+++ llvm/include/llvm/ADT/UniqueVector.h	Tue Feb  6 08:59:28 2007
@@ -10,6 +10,7 @@
 #ifndef LLVM_ADT_UNIQUEVECTOR_H
 #define LLVM_ADT_UNIQUEVECTOR_H
 
+#include <cassert>
 #include <map>
 #include <vector>
 






More information about the llvm-commits mailing list