Index: src/IceTranslator.h |
diff --git a/src/IceTranslator.h b/src/IceTranslator.h |
index 11899513e415337d0b1b01a53747dfa9668093e3..51e4df0fbb01782e718afdff3ca1a282846be0c0 100644 |
--- a/src/IceTranslator.h |
+++ b/src/IceTranslator.h |
@@ -29,15 +29,13 @@ class GlobalContext; |
// machine instructions. |
class Translator { |
public: |
- Translator(GlobalContext *Ctx, ClFlags &Flags) |
- : Ctx(Ctx), Flags(Flags), ErrorStatus(0) {} |
+ Translator(GlobalContext *Ctx) : Ctx(Ctx), ErrorStatus(0) {} |
~Translator(); |
bool getErrorStatus() const { return ErrorStatus; } |
protected: |
GlobalContext *Ctx; |
- ClFlags &Flags; |
// The exit status of the translation. False is successful. True |
// otherwise. |
bool ErrorStatus; |