| 36 | } |
| 37 | |
| 38 | void JsonUiInternal::clearChanged() FL_NOEXCEPT { |
| 39 | fl::unique_lock<fl::mutex> lock(mMutex); |
| 40 | mHasChanged = false; |
| 41 | } |
| 42 | |
| 43 | int JsonUiInternal::nextId() FL_NOEXCEPT { |
| 44 | static fl::atomic<u32> sNextId(0); |
no outgoing calls
no test coverage detected