diff options
author | MITSUNARI Shigeo <[email protected]> | 2016-12-28 11:08:42 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2016-12-28 11:08:42 +0900 |
commit | 3a99e9069a308fee710d68494c5650c12411045f (patch) | |
tree | 7946af222b5cf3f8f40879e06b8a8c5f6b3c4464 | |
parent | fe4765d2fed4e990ea5e9661b6bc5fc9bf48ec16 (diff) | |
download | xbyak-3a99e9069a308fee710d68494c5650c12411045f.tar.gz xbyak-3a99e9069a308fee710d68494c5650c12411045f.zip |
(trivial fix) add const
-rw-r--r-- | xbyak/xbyak_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbyak/xbyak_util.h b/xbyak/xbyak_util.h index a5031df..7ec5d01 100644 --- a/xbyak/xbyak_util.h +++ b/xbyak/xbyak_util.h @@ -254,7 +254,7 @@ public: } setFamily(); } - void putFamily() + void putFamily() const { printf("family=%d, model=%X, stepping=%d, extFamily=%d, extModel=%X\n", family, model, stepping, extFamily, extModel); |