Fix SafeNumeric::conditional_increment() for NO_THREADS
This commit is contained in:
parent
2adacd751c
commit
b1edb69249
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
_ALWAYS_INLINE_ T conditional_increment() {
|
_ALWAYS_INLINE_ T conditional_increment() {
|
||||||
if (value != 0) {
|
if (value == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
return ++value;
|
return ++value;
|
||||||
|
|
Loading…
Reference in a new issue