diff options
Diffstat (limited to 'dexlayout/dex_writer.h')
-rw-r--r-- | dexlayout/dex_writer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dexlayout/dex_writer.h b/dexlayout/dex_writer.h index db1898bf26..dd2ebad26f 100644 --- a/dexlayout/dex_writer.h +++ b/dexlayout/dex_writer.h @@ -192,15 +192,15 @@ class DexWriter { class Container : public DexContainer { public: - Section* GetMainSection() OVERRIDE { + Section* GetMainSection() override { return &main_section_; } - Section* GetDataSection() OVERRIDE { + Section* GetDataSection() override { return &data_section_; } - bool IsCompactDexContainer() const OVERRIDE { + bool IsCompactDexContainer() const override { return false; } |