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

Lauro Ramos Venancio lauro.venancio at gmail.com
Wed Feb 7 08:59:37 PST 2007



Changes in directory llvm/include/llvm/ADT:

APInt.h updated: 1.3 -> 1.4
---
Log message:

Fix build error.
include/llvm/ADT/APInt.h:326: error: ‘assert’ was not declared in this scope


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

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


Index: llvm/include/llvm/ADT/APInt.h
diff -u llvm/include/llvm/ADT/APInt.h:1.3 llvm/include/llvm/ADT/APInt.h:1.4
--- llvm/include/llvm/ADT/APInt.h:1.3	Tue Feb  6 23:58:38 2007
+++ llvm/include/llvm/ADT/APInt.h	Wed Feb  7 10:59:17 2007
@@ -16,6 +16,7 @@
 #define LLVM_APINT_H
 
 #include "llvm/Support/DataTypes.h"
+#include <cassert>
 #include <string>
 
 namespace llvm {






More information about the llvm-commits mailing list