diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-18 01:35:37 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-18 01:35:37 -0300 |
commit | 2b6553f1ee3a6975b7511d01826f5807c49c132d (patch) | |
tree | 09257aee999552c559e659fd33a7c15120b2cb22 /src/template-parser.h | |
parent | 64e772c1125acadad8167fd5fd25b380f333ab86 (diff) | |
download | blogc-2b6553f1ee3a6975b7511d01826f5807c49c132d.tar.gz blogc-2b6553f1ee3a6975b7511d01826f5807c49c132d.tar.bz2 blogc-2b6553f1ee3a6975b7511d01826f5807c49c132d.zip |
renderer: implemented if statements
Diffstat (limited to 'src/template-parser.h')
-rw-r--r-- | src/template-parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/template-parser.h b/src/template-parser.h index 809e3bc..e608099 100644 --- a/src/template-parser.h +++ b/src/template-parser.h @@ -24,7 +24,7 @@ typedef enum { } blogc_template_stmt_type_t; typedef enum { - BLOGC_TEMPLATE_OP_NOT = 1 << 0, + BLOGC_TEMPLATE_OP_NEQ = 1 << 0, BLOGC_TEMPLATE_OP_EQ = 1 << 1, BLOGC_TEMPLATE_OP_LT = 1 << 2, BLOGC_TEMPLATE_OP_GT = 1 << 3, |