diff options
author | MITSUNARI Shigeo <[email protected]> | 2016-11-20 19:44:04 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2016-11-20 19:44:04 +0900 |
commit | bc9466827c22299fa531c13848ceeae2926c30df (patch) | |
tree | d58bafe64b68ce5ba76f5afd65ffcf60168a1791 | |
parent | b6133a02dd6b7116bea31d0e6b7142bf97f071aa (diff) | |
download | xbyak-bc9466827c22299fa531c13848ceeae2926c30df.tar.gz xbyak-bc9466827c22299fa531c13848ceeae2926c30df.zip |
remove const of AutoGrow again
-rw-r--r-- | xbyak/xbyak.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h index cfaea46..b1a40cd 100644 --- a/xbyak/xbyak.h +++ b/xbyak/xbyak.h @@ -741,7 +741,7 @@ inline RegExp operator-(const RegExp& e, size_t disp) } // 2nd parameter for constructor of CodeArray(maxSize, userPtr, alloc) -const void *const AutoGrow = (void*)1; +void *const AutoGrow = (void*)1; class CodeArray { enum Type { |