summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-05-03 20:00:48 +0200
committerTao Bao <tbao@google.com>2017-05-03 20:26:00 +0200
commitec9706738f35a859f66fd0758b73381055804f63 (patch)
tree1a3293313d04f5f9e7432ee5d13344b22a3fbefd /common.h
parentMerge "Add a default error code when updater script aborts" (diff)
downloadandroid_bootable_recovery-ec9706738f35a859f66fd0758b73381055804f63.tar
android_bootable_recovery-ec9706738f35a859f66fd0758b73381055804f63.tar.gz
android_bootable_recovery-ec9706738f35a859f66fd0758b73381055804f63.tar.bz2
android_bootable_recovery-ec9706738f35a859f66fd0758b73381055804f63.tar.lz
android_bootable_recovery-ec9706738f35a859f66fd0758b73381055804f63.tar.xz
android_bootable_recovery-ec9706738f35a859f66fd0758b73381055804f63.tar.zst
android_bootable_recovery-ec9706738f35a859f66fd0758b73381055804f63.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 62fb1324b..87b84772d 100644
--- a/common.h
+++ b/common.h
@@ -22,8 +22,8 @@
#include <string>
-#define STRINGIFY(x) #x
-#define EXPAND(x) STRINGIFY(x)
+static constexpr int kRecoveryApiVersion = RECOVERY_API_VERSION; // Defined in Android.mk.
+static_assert(kRecoveryApiVersion >= 3, "Invalid recovery API version.");
class RecoveryUI;