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