summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-05-04 02:29:31 +0200
committerTao Bao <tbao@google.com>2017-05-04 02:31:11 +0200
commit8be0f39fec7f26164fd0791ff6d15bde65fc849c (patch)
treefa4fca46de414eb53dadacaa629571762147654f /common.h
parentRemove EXPAND/STRINGIFY macros. (diff)
downloadandroid_bootable_recovery-8be0f39fec7f26164fd0791ff6d15bde65fc849c.tar
android_bootable_recovery-8be0f39fec7f26164fd0791ff6d15bde65fc849c.tar.gz
android_bootable_recovery-8be0f39fec7f26164fd0791ff6d15bde65fc849c.tar.bz2
android_bootable_recovery-8be0f39fec7f26164fd0791ff6d15bde65fc849c.tar.lz
android_bootable_recovery-8be0f39fec7f26164fd0791ff6d15bde65fc849c.tar.xz
android_bootable_recovery-8be0f39fec7f26164fd0791ff6d15bde65fc849c.tar.zst
android_bootable_recovery-8be0f39fec7f26164fd0791ff6d15bde65fc849c.zip
Diffstat (limited to 'common.h')
-rw-r--r--common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.h b/common.h
index 87b84772d..62fb1324b 100644
--- a/common.h
+++ b/common.h
@@ -22,8 +22,8 @@
#include <string>
-static constexpr int kRecoveryApiVersion = RECOVERY_API_VERSION; // Defined in Android.mk.
-static_assert(kRecoveryApiVersion >= 3, "Invalid recovery API version.");
+#define STRINGIFY(x) #x
+#define EXPAND(x) STRINGIFY(x)
class RecoveryUI;