initial commit
This commit is contained in:
17
libraries/FastLED/src/fl/str_ui.cpp
Normal file
17
libraries/FastLED/src/fl/str_ui.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user