summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-09-13 22:53:53 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-09-13 22:53:53 +0200
commit6e7df82c7ba4b868487d638e641e3ba62b12211e (patch)
tree4e9b138c4234d80b88cc856effa3f55e340044f5 /common.h
parentMerge "Close cmd_pipe properly after updater test finishes" (diff)
parentRemove EXPAND/STRINGIFY macros. (diff)
downloadandroid_bootable_recovery-6e7df82c7ba4b868487d638e641e3ba62b12211e.tar
android_bootable_recovery-6e7df82c7ba4b868487d638e641e3ba62b12211e.tar.gz
android_bootable_recovery-6e7df82c7ba4b868487d638e641e3ba62b12211e.tar.bz2
android_bootable_recovery-6e7df82c7ba4b868487d638e641e3ba62b12211e.tar.lz
android_bootable_recovery-6e7df82c7ba4b868487d638e641e3ba62b12211e.tar.xz
android_bootable_recovery-6e7df82c7ba4b868487d638e641e3ba62b12211e.tar.zst
android_bootable_recovery-6e7df82c7ba4b868487d638e641e3ba62b12211e.zip
Diffstat (limited to 'common.h')
-rw-r--r--common.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/common.h b/common.h
index 62fb1324b..8b336f806 100644
--- a/common.h
+++ b/common.h
@@ -22,8 +22,9 @@
#include <string>
-#define STRINGIFY(x) #x
-#define EXPAND(x) STRINGIFY(x)
+// Not using the command-line defined macro here because this header could be included by
+// device-specific recovery libraries. We static assert the value consistency in recovery.cpp.
+static constexpr int kRecoveryApiVersion = 3;
class RecoveryUI;