summaryrefslogtreecommitdiffstats
path: root/edify/expr.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-08-21 20:20:17 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-08-21 20:20:17 +0200
commit822685a8648e91aca6ce35992087c18165d4d609 (patch)
tree41f6eaada8de57f11eabd573f351490d1abe9f52 /edify/expr.h
parentam 4854e292: am ad509fd4: Merge "Fix potential crash" (diff)
parentam 93fa4b67: Merge "edify: Switch to C++." (diff)
downloadandroid_bootable_recovery-822685a8648e91aca6ce35992087c18165d4d609.tar
android_bootable_recovery-822685a8648e91aca6ce35992087c18165d4d609.tar.gz
android_bootable_recovery-822685a8648e91aca6ce35992087c18165d4d609.tar.bz2
android_bootable_recovery-822685a8648e91aca6ce35992087c18165d4d609.tar.lz
android_bootable_recovery-822685a8648e91aca6ce35992087c18165d4d609.tar.xz
android_bootable_recovery-822685a8648e91aca6ce35992087c18165d4d609.tar.zst
android_bootable_recovery-822685a8648e91aca6ce35992087c18165d4d609.zip
Diffstat (limited to '')
-rw-r--r--edify/expr.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/edify/expr.h b/edify/expr.h
index a9ed2f9c5..36f8e9612 100644
--- a/edify/expr.h
+++ b/edify/expr.h
@@ -21,10 +21,6 @@
#include "yydefs.h"
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#define MAX_STRING_LEN 1024
typedef struct Expr Expr;
@@ -59,7 +55,7 @@ typedef Value* (*Function)(const char* name, State* state,
struct Expr {
Function fn;
- char* name;
+ const char* name;
int argc;
Expr** argv;
int start, end;
@@ -166,8 +162,4 @@ void FreeValue(Value* v);
int parse_string(const char* str, Expr** root, int* error_count);
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
#endif // _EXPRESSION_H