diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |