Add non-const version getFileSystemOpts() access function.
All the other get*Opts have both versions. llvm-svn: 224995
This commit is contained in:
parent
c5de311417
commit
b14b0cefe2
|
|
@ -250,6 +250,9 @@ public:
|
|||
return Invocation->getDiagnosticOpts();
|
||||
}
|
||||
|
||||
FileSystemOptions &getFileSystemOpts() {
|
||||
return Invocation->getFileSystemOpts();
|
||||
}
|
||||
const FileSystemOptions &getFileSystemOpts() const {
|
||||
return Invocation->getFileSystemOpts();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue