diff options
Diffstat (limited to 'compiler/dex/pass.h')
-rw-r--r-- | compiler/dex/pass.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/dex/pass.h b/compiler/dex/pass.h index b4906d67df..dbb5366af6 100644 --- a/compiler/dex/pass.h +++ b/compiler/dex/pass.h @@ -64,7 +64,7 @@ class Pass { /** * @brief Start of the pass: called before the Worker function. */ - virtual void Start(const PassDataHolder* data) const { + virtual void Start(PassDataHolder* data) const { // Unused parameter. UNUSED(data); } @@ -72,7 +72,7 @@ class Pass { /** * @brief End of the pass: called after the WalkBasicBlocks function. */ - virtual void End(const PassDataHolder* data) const { + virtual void End(PassDataHolder* data) const { // Unused parameter. UNUSED(data); } |