We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d64c6cf + e7a5528 commit 1d2d379Copy full SHA for 1d2d379
clang/include/clang/Frontend/CompilerInvocation.h
@@ -304,6 +304,10 @@ class CompilerInvocation : public CompilerInvocationBase {
304
return PPOpts;
305
}
306
std::shared_ptr<LangOptions> getLangOptsPtr() { return LangOpts; }
307
+ std::shared_ptr<CASOptions> getCASOptsPtr() { return CASOpts; }
308
+ void setCASOption(std::shared_ptr<CASOptions> CASOpts) {
309
+ this->CASOpts = CASOpts;
310
+ }
311
/// @}
312
313
/// Create a compiler invocation from a list of input options.
0 commit comments