| 821 | QAtomicInt& flag; |
| 822 | RefreshGuard(QAtomicInt& f) : flag(f) {} |
| 823 | ~RefreshGuard() { flag.storeRelease(0); } |
| 824 | } guard(s_refreshing); |
| 825 | |
| 826 | QString refreshToken = obj.value("refresh_token").toString(); |
nothing calls this directly
no outgoing calls
no test coverage detected