From: Yaron Keren Date: Tue, 30 Dec 2014 18:46:42 +0000 (+0000) Subject: Add non-const version getFileSystemOpts() access function. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c68a94494a1d00b25fdbac19ae9e06e29d052c61;p=clang Add non-const version getFileSystemOpts() access function. All the other get*Opts have both versions. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@224995 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Frontend/CompilerInstance.h b/include/clang/Frontend/CompilerInstance.h index 31a0d098a2..6ac6b43370 100644 --- a/include/clang/Frontend/CompilerInstance.h +++ b/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(); }