API changes to match llvm ToT.

llvm-svn: 79868
This commit is contained in:
Chris Lattner
2009-08-23 22:45:33 +00:00
parent 5db2ff5037
commit 3441b4f77e
11 changed files with 24 additions and 23 deletions

View File

@@ -78,7 +78,7 @@ static void AddQuotedIncludePath(std::vector<char> &Buf,
// Escape double quotes etc.
Buf.push_back('"');
std::string EscapedFile = Lexer::Stringify(Path.toString());
std::string EscapedFile = Lexer::Stringify(Path.str());
Buf.insert(Buf.end(), EscapedFile.begin(), EscapedFile.end());
Buf.push_back('"');
}