Skip to content
Snippets Groups Projects
Commit 2387323a authored by Maciej Żenczykowski's avatar Maciej Żenczykowski
Browse files

switch from defines to static consts


tm-mainline-prod is no longer in use

Test: TreeHugger
Signed-off-by: default avatarMaciej Żenczykowski <maze@google.com>
Change-Id: I8704dccff1432ba811e99a89ea60028fd63365b5
parent 20556ef7
No related branches found
No related tags found
No related merge requests found
......@@ -104,12 +104,11 @@ static const bool NO_UPDATETIME = false;
static const bool UPDATETIME = true;
// constants for passing in to ignore_on_eng / ignore_on_user / ignore_on_userdebug
// define's instead of static const due to tm-mainline-prod compiler static_assert limitations
#define LOAD_ON_ENG false
#define LOAD_ON_USER false
#define LOAD_ON_USERDEBUG false
#define IGNORE_ON_ENG true
#define IGNORE_ON_USER true
#define IGNORE_ON_USERDEBUG true
static const bool LOAD_ON_ENG = false;
static const bool LOAD_ON_USER = false;
static const bool LOAD_ON_USERDEBUG = false;
static const bool IGNORE_ON_ENG = true;
static const bool IGNORE_ON_USER = true;
static const bool IGNORE_ON_USERDEBUG = true;
#define KVER_4_14 KVER(4, 14, 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment