commit | bd1d7fa46088b3b339ad613831a443fc5b65526b | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Fri Oct 12 22:56:33 2012 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Fri Oct 12 22:56:33 2012 +0000 |
tree | b22dee9a640167fadecb2a26958e967d2868f1e6 | |
parent | b9f7aa46dd198947118685276c9dd865f677dcb5 [diff] [blame] |
Silence dead store warning. It is conceptually possible we will add more code that references SourceFile, so removing the dead store doesn't seem appropriate for the long term. llvm-svn: 165837
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp index 65bd601..eefaacc 100644 --- a/clang/lib/Basic/SourceManager.cpp +++ b/clang/lib/Basic/SourceManager.cpp
@@ -1577,6 +1577,7 @@ } } + (void) SourceFile; return FirstFID; }