summaryrefslogtreecommitdiffstats
path: root/src/cppvalue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cppvalue.h')
-rw-r--r--src/cppvalue.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cppvalue.h b/src/cppvalue.h
index d3e2a1d..7289ce0 100644
--- a/src/cppvalue.h
+++ b/src/cppvalue.h
@@ -22,11 +22,10 @@
#include <stdio.h>
#include <qglobal.h>
+/** A class representing a C-preprocessor value. */
class CPPValue
{
public:
-
-
enum Type { Int, Float };
CPPValue(long val=0) : type(Int) { v.l = val; }