[llvm-commits] CVS: llvm/lib/Support/DynamicLinker.cpp

Alkis Evlogimenos alkis at cs.uiuc.edu
Tue Sep 28 07:42:55 PDT 2004



Changes in directory llvm/lib/Support:

DynamicLinker.cpp updated: 1.8 -> 1.9
---
Log message:

Add includes and use std:: for standard library calls to make code
compile on windows. This patch was contributed by Paolo Invernizzi.


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

Index: llvm/lib/Support/DynamicLinker.cpp
diff -u llvm/lib/Support/DynamicLinker.cpp:1.8 llvm/lib/Support/DynamicLinker.cpp:1.9
--- llvm/lib/Support/DynamicLinker.cpp:1.8	Wed Sep  1 17:55:35 2004
+++ llvm/lib/Support/DynamicLinker.cpp	Tue Sep 28 09:42:44 2004
@@ -21,8 +21,9 @@
 #include "llvm/Support/DynamicLinker.h"
 #include "llvm/Config/dlfcn.h"
 #include "llvm/Config/windows.h"
-#include <cassert>
 #include <vector>
+#include <cassert>
+#include <cstdio>
 using namespace llvm;
 
 #if defined(HAVE_WINDOWS_H)






More information about the llvm-commits mailing list