parent
165a22ed0f
commit
18e6a09739
|
@ -122,9 +122,13 @@ namespace ValueFlow {
|
||||||
return valueType == LIFETIME;
|
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 */
|
/** int value */
|
||||||
long long intvalue;
|
long long intvalue;
|
||||||
|
|
Loading…
Reference in New Issue