[cfe-commits] r165007 - /cfe/trunk/lib/Rewrite/Frontend/InclusionRewriter.cpp
Aaron Ballman
aaron at aaronballman.com
Tue Oct 2 06:54:26 PDT 2012
Author: aaronballman
Date: Tue Oct 2 08:54:25 2012
New Revision: 165007
URL: http://llvm.org/viewvc/llvm-project?rev=165007&view=rev
Log:
Silencing an MSVC warning about */ being found outside of a comment.
Modified:
cfe/trunk/lib/Rewrite/Frontend/InclusionRewriter.cpp
Modified: cfe/trunk/lib/Rewrite/Frontend/InclusionRewriter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Rewrite/Frontend/InclusionRewriter.cpp?rev=165007&r1=165006&r2=165007&view=diff
==============================================================================
--- cfe/trunk/lib/Rewrite/Frontend/InclusionRewriter.cpp (original)
+++ cfe/trunk/lib/Rewrite/Frontend/InclusionRewriter.cpp Tue Oct 2 08:54:25 2012
@@ -157,7 +157,7 @@
const FileEntry * /*File*/,
StringRef /*SearchPath*/,
StringRef /*RelativePath*/,
- const Module */*Imported*/) {
+ const Module * /*Imported*/) {
assert(LastInsertedFileChange == FileChanges.end() && "Another inclusion "
"directive was found before the previous one was processed");
std::pair<FileChangeMap::iterator, bool> p = FileChanges.insert(
More information about the cfe-commits
mailing list