1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00

Silence another pedantic warning

This commit is contained in:
Themba Dube 2019-03-16 08:58:52 -04:00
parent edb58cc61b
commit 240744f9c9

View File

@ -8,13 +8,16 @@
* templ -> object short name with lower case(e.g. btn, label etc) * templ -> object short name with lower case(e.g. btn, label etc)
* TEMPL -> object short name with upper case (e.g. BTN, LABEL etc.) * TEMPL -> object short name with upper case (e.g. BTN, LABEL etc.)
* *
* You can remove the defined() clause from the #if statement below. This exists because LV_USE_TEMPL
* is not in lv_conf.h or lv_conf_templ.h by default.
*/ */
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
//#include "lv_templ.h" /*TODO uncomment this*/ //#include "lv_templ.h" /*TODO uncomment this*/
#if LV_USE_TEMPL != 0
#if defined(LV_USE_TEMPL) && LV_USE_TEMPL != 0
/********************* /*********************
* DEFINES * DEFINES