[llvm-commits] CVS: llvm-java/include/llvm/Java/ClassFile.h

Alkis Evlogimenos alkis at cs.uiuc.edu
Sun Dec 12 23:15:10 PST 2004



Changes in directory llvm-java/include/llvm/Java:

ClassFile.h updated: 1.26 -> 1.27
---
Log message:

Make this compile again after the recent changes to FileUtilities.h.


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

Index: llvm-java/include/llvm/Java/ClassFile.h
diff -u llvm-java/include/llvm/Java/ClassFile.h:1.26 llvm-java/include/llvm/Java/ClassFile.h:1.27
--- llvm-java/include/llvm/Java/ClassFile.h:1.26	Sat Dec 11 17:27:38 2004
+++ llvm-java/include/llvm/Java/ClassFile.h	Mon Dec 13 01:15:00 2004
@@ -15,6 +15,8 @@
 #ifndef LLVM_JAVA_CLASSFILE_H
 #define LLVM_JAVA_CLASSFILE_H
 
+#include <llvm/System/Path.h>
+
 #include <iosfwd>
 #include <map>
 #include <stdexcept>
@@ -67,8 +69,8 @@
 
   class ClassFile {
     static ClassFile* readClassFile(std::istream& is);
-    static std::vector<std::string> getClassPath();
-    static std::string getFileForClass(const std::string& classname);
+    static std::vector<llvm::sys::Path> getClassPath();
+    static sys::Path getFileForClass(const std::string& classname);
 
     typedef std::map<std::string, Method*> Name2MethodMap;
 






More information about the llvm-commits mailing list