astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2019-01-29 09:48:18 +01:00
parent 165a22ed0f
commit 18e6a09739
1 changed files with 6 additions and 2 deletions

View File

@ -122,9 +122,13 @@ namespace ValueFlow {
return valueType == LIFETIME;
}
bool isLocalLifetimeValue() const { return valueType == LIFETIME && lifetimeScope == Local; }
bool isLocalLifetimeValue() const {
return valueType == LIFETIME && lifetimeScope == Local;
}
bool isArgumentLifetimeValue() const { return valueType == LIFETIME && lifetimeScope == Argument; }
bool isArgumentLifetimeValue() const {
return valueType == LIFETIME && lifetimeScope == Argument;
}
/** int value */
long long intvalue;