summaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/commands/emugen/EntryPoint.h1
-rw-r--r--host/commands/emugen/Var.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/host/commands/emugen/EntryPoint.h b/host/commands/emugen/EntryPoint.h
index 1061d255b..a50fda041 100644
--- a/host/commands/emugen/EntryPoint.h
+++ b/host/commands/emugen/EntryPoint.h
@@ -52,7 +52,6 @@ public:
int setAttribute(const std::string &line, size_t lc);
private:
- enum { PR_RETVAL = 0, PR_NAME, PR_VARS, PR_DONE } prState;
std::string m_name;
Var m_retval;
VarsArray m_vars;
diff --git a/host/commands/emugen/Var.h b/host/commands/emugen/Var.h
index d20afb167..3b50bccf6 100644
--- a/host/commands/emugen/Var.h
+++ b/host/commands/emugen/Var.h
@@ -89,7 +89,6 @@ public:
private:
std::string m_name;
const VarType * m_type = nullptr;
- bool m_pointer = false; // is this variable a pointer;
std::string m_lenExpression; // an expression to calcualte a pointer data size
PointerDir m_pointerDir = POINTER_IN;
bool m_nullAllowed = false;