Add non-const version getFileSystemOpts() access function.

All the other get*Opts have both versions.

llvm-svn: 224995
This commit is contained in:
Yaron Keren 2014-12-30 18:46:42 +00:00
parent c5de311417
commit b14b0cefe2
1 changed files with 3 additions and 0 deletions

View File

@ -250,6 +250,9 @@ public:
return Invocation->getDiagnosticOpts();
}
FileSystemOptions &getFileSystemOpts() {
return Invocation->getFileSystemOpts();
}
const FileSystemOptions &getFileSystemOpts() const {
return Invocation->getFileSystemOpts();
}