Files
klubhaus-doorbell/libraries/FastLED/src/fl/str_ui.cpp
2026-02-12 00:45:31 -08:00

18 lines
508 B
C++

// UI-specific string functionality
// This file is only compiled/linked when UI features are actually used
// Breaking the dependency chain from core string functionality to UI system
#include "fl/str.h"
#include "platforms/shared/ui/json/ui_internal.h"
namespace fl {
// Implementation of UI-specific append method
// This will only be linked if JsonUiInternal is actually used somewhere
string &string::append(const JsonUiInternal& val) {
append(val.name());
return *this;
}
} // namespace fl