Allow compiler plugins for online

Change-Id: I8e45936ef5675d531be71496e8894b90eaf2f6e2
Reviewed-on: https://gerrit.libreoffice.org/46769
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: pranavk <pranavk@collabora.co.uk>
This commit is contained in:
Pranav Kant
2017-12-16 14:50:30 +05:30
committed by pranavk
parent ed29dc6b3b
commit b39e627be4
4 changed files with 34 additions and 2 deletions

View File

@@ -56,6 +56,7 @@ public:
bool ignoreLocation(SourceLocation loc);
bool addRemoval( SourceLocation loc );
bool isDebugMode() const { return debugMode; }
bool isLOOLMode() const { return !loolBasePath.empty(); }
static bool isUnitTestMode();
private:
void handleOption( const std::string& option );
@@ -69,6 +70,7 @@ private:
std::set< SourceLocation > removals;
std::string scope;
std::string warningsOnly;
std::string loolBasePath;
bool warningsAsErrors;
bool debugMode = false;
};