changeset 674:a25d30714cfe

Add some comments.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 16 Apr 2013 15:03:44 +0300
parents 776c22f83726
children 704f56f31e15
files dmeval.h
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/dmeval.h	Tue Apr 16 15:03:29 2013 +0300
+++ b/dmeval.h	Tue Apr 16 15:03:44 2013 +0300
@@ -10,6 +10,7 @@
 
 enum
 {
+    // No-op
     OP_NONE,
 
     OP_ADD,
@@ -25,11 +26,13 @@
     OP_OR,
     OP_XOR,
     
+    // Special ops
     OP_FUNC,
     OP_VAR,
     OP_SUBEXPR,
     OP_CONST,
 
+    // Total number of operators
     OP_NOPERS
 } DMOperType;