diff options
author | Tao Bao <tbao@google.com> | 2015-08-21 19:39:39 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-08-21 19:39:39 +0200 |
commit | dbbdcf3fd817128f89474f9ea8c84743fc648a1a (patch) | |
tree | 2aa9d806b2c6f235ea79780f6f5452927fd80df7 /edify/expr.h | |
parent | am ad509fd4: Merge "Fix potential crash" (diff) | |
parent | Merge "edify: Switch to C++." (diff) | |
download | android_bootable_recovery-dbbdcf3fd817128f89474f9ea8c84743fc648a1a.tar android_bootable_recovery-dbbdcf3fd817128f89474f9ea8c84743fc648a1a.tar.gz android_bootable_recovery-dbbdcf3fd817128f89474f9ea8c84743fc648a1a.tar.bz2 android_bootable_recovery-dbbdcf3fd817128f89474f9ea8c84743fc648a1a.tar.lz android_bootable_recovery-dbbdcf3fd817128f89474f9ea8c84743fc648a1a.tar.xz android_bootable_recovery-dbbdcf3fd817128f89474f9ea8c84743fc648a1a.tar.zst android_bootable_recovery-dbbdcf3fd817128f89474f9ea8c84743fc648a1a.zip |
Diffstat (limited to 'edify/expr.h')
-rw-r--r-- | edify/expr.h | 10 |
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 |