Conversation
TODO's added regarding errors when compiling without 'build_flags = -w' option
|
Option 'build_flags = -w' in platformio.ini file resolves the issue, but nevertheless the errors should be fixed at the source. |
|
Thanks for pointing this out! A |
Added missing return values to: 1) Sprite& Sprite::resize(uint width, uint height) 2) Sprite& Sprite::setTransparent(bool transparent) 3) Sprite& Sprite::setChroma(Color color)
Missing return values in two methods: 1) UI\LowRamScreen.impl: virtual Screen& Screen::addChild(Element*) 2) UI\ScrollLayout.cpp: virtual ElementContainer& ScrollLayout::addChild(Element*)
|
NOTE: In order to resolve the newly found no-return-value errors, please confirm/answer to the following assumption/question: In case of
probably return *this; will do. But what to return from
|
Added missing return values to: 1) src/UI/ScrollLayout.cpp: ElementContainer& ScrollLayout::addChild(Element* element) 2) src/UI/LowRamScreen.impl: Screen& Screen::addChild(Element* element)
|
For |
TODO's added regarding errors when compiling without 'build_flags = -w' option