Renamed _terminated
This commit is contained in:
parent
bea6b32157
commit
87b21f3e57
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include "valueflow.h"
|
||||
|
||||
bool Settings::_terminated;
|
||||
bool Settings::mTerminated;
|
||||
|
||||
Settings::Settings()
|
||||
: mEnabled(0),
|
||||
|
|
|
@ -65,7 +65,7 @@ private:
|
|||
int mEnabled;
|
||||
|
||||
/** @brief terminate checking */
|
||||
static bool _terminated;
|
||||
static bool mTerminated;
|
||||
|
||||
public:
|
||||
Settings();
|
||||
|
@ -116,12 +116,12 @@ public:
|
|||
|
||||
/** @brief Request termination of checking */
|
||||
static void terminate(bool t = true) {
|
||||
Settings::_terminated = t;
|
||||
Settings::mTerminated = t;
|
||||
}
|
||||
|
||||
/** @brief termination requested? */
|
||||
static bool terminated() {
|
||||
return Settings::_terminated;
|
||||
return Settings::mTerminated;
|
||||
}
|
||||
|
||||
/** @brief Force checking the files with "too many" configurations (--force). */
|
||||
|
|
Loading…
Reference in New Issue