diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-12-09 18:50:04 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-12-09 18:50:04 +0100 |
| commit | 59be6a7ef905eaf4adbe1fffd517a02ff64ae011 (patch) | |
| tree | 060f81b30d5cb95a2a87e9ae59450c96bf48cad9 /src/Fl_lock.cxx | |
| parent | 36ef15963a7d90800d02110bdcf731f03659c1a6 (diff) | |
Fix for "Public members Fl::awake_ring_*_ should be private" (#559)
Diffstat (limited to 'src/Fl_lock.cxx')
| -rw-r--r-- | src/Fl_lock.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Fl_lock.cxx b/src/Fl_lock.cxx index fe527ba84..3aea98d95 100644 --- a/src/Fl_lock.cxx +++ b/src/Fl_lock.cxx @@ -198,3 +198,11 @@ int Fl::lock() { void Fl::unlock() { Fl::system_driver()->unlock(); } + +#ifndef FL_DOXYGEN + +bool Fl::equal_awake_ring_ends() { + return awake_ring_head_ == Fl::awake_ring_tail_; +} + +#endif // FL_DOXYGEN |
