diff options
Diffstat (limited to 'src/compiler.h')
-rw-r--r-- | src/compiler.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/compiler.h b/src/compiler.h index 4e1be1d712..f05f80b9ad 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -45,14 +45,6 @@ class Compiler { return image_; } - void SetVerbose(bool verbose) { - verbose_ = verbose; - } - - bool IsVerbose() const { - return verbose_; - } - // Stub to throw AbstractMethodError static ByteArray* CreateAbstractMethodErrorStub(InstructionSet instruction_set); @@ -155,8 +147,6 @@ class Compiler { const std::set<std::string>* image_classes_; - bool verbose_; - DISALLOW_COPY_AND_ASSIGN(Compiler); }; |