From c68a94494a1d00b25fdbac19ae9e06e29d052c61 Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Tue, 30 Dec 2014 18:46:42 +0000 Subject: [PATCH] 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 --- include/clang/Frontend/CompilerInstance.h | 3 +++ 1 file changed, 3 insertions(+) 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(); } -- 2.50.1