diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2014-12-30 18:46:42 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2014-12-30 18:46:42 +0000 |
commit | b14b0cefe241f81a1b3557df8899a60d28c407bc (patch) | |
tree | 66a72a348cfebd2fb4c861733c0df058e98b21b4 | |
parent | c5de311417b2802baec2f117b2234674d729534a (diff) | |
download | bcm5719-llvm-b14b0cefe241f81a1b3557df8899a60d28c407bc.tar.gz bcm5719-llvm-b14b0cefe241f81a1b3557df8899a60d28c407bc.zip |
Add non-const version getFileSystemOpts() access function.
All the other get*Opts have both versions.
llvm-svn: 224995
-rw-r--r-- | clang/include/clang/Frontend/CompilerInstance.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/include/clang/Frontend/CompilerInstance.h b/clang/include/clang/Frontend/CompilerInstance.h index 31a0d098a21..6ac6b433709 100644 --- a/clang/include/clang/Frontend/CompilerInstance.h +++ b/clang/include/clang/Frontend/CompilerInstance.h @@ -250,6 +250,9 @@ public: return Invocation->getDiagnosticOpts(); } + FileSystemOptions &getFileSystemOpts() { + return Invocation->getFileSystemOpts(); + } const FileSystemOptions &getFileSystemOpts() const { return Invocation->getFileSystemOpts(); } |