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

@ -121,7 +121,7 @@ public:
Image() : data(Data::ImageInner_None()) { }
#ifndef SLINT_FEATURE_FREESTANDING
#if !defined(SLINT_FEATURE_FREESTANDING) || defined(DOXYGEN)
/// Load an image from an image file
[[nodiscard]] static Image load_from_path(const SharedString &file_path)
{