API review: enable all features in the C++ docs (#5592)

And make sure that functions excluded when freestanding is enabled are included in the docs.
This commit is contained in:
Simon Hausmann 2024-07-11 08:29:51 +02:00 committed by GitHub
parent 4de9cae583
commit 27dc6e53c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -1398,7 +1398,7 @@ void invoke_from_event_loop(Functor f)
[](void *data) { delete reinterpret_cast<Functor *>(data); });
}
#ifndef SLINT_FEATURE_FREESTANDING
#if !defined(SLINT_FEATURE_FREESTANDING) || defined(DOXYGEN)
/// Blocking version of invoke_from_event_loop()
///