Renamed _terminated

This commit is contained in:
Daniel Marjamäki 2018-06-17 08:22:53 +02:00
parent bea6b32157
commit 87b21f3e57
2 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@
#include "valueflow.h"
bool Settings::_terminated;
bool Settings::mTerminated;
Settings::Settings()
: mEnabled(0),

View File

@ -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). */