diff options
author | Michele Calgaro <[email protected]> | 2020-02-21 11:16:24 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-02-21 11:16:24 +0900 |
commit | 46033f12ce9fc986dc1b96538a1b7278542ba07c (patch) | |
tree | 4f0d54ea1429485da69f166132bb4df8e0d74201 | |
parent | 9223963dba8937bab96a8d294692c37dab1ed871 (diff) | |
download | amarok-46033f12ce9fc986dc1b96538a1b7278542ba07c.tar.gz amarok-46033f12ce9fc986dc1b96538a1b7278542ba07c.zip |
Remove remaining 'register' instructions.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | amarok/src/engine/helix/helix-sp/helix-include/common/include/atomicbase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/engine/helix/helix-sp/helix-include/common/include/atomicbase.h b/amarok/src/engine/helix/helix-sp/helix-include/common/include/atomicbase.h index 08a30791..800f4a21 100644 --- a/amarok/src/engine/helix/helix-sp/helix-include/common/include/atomicbase.h +++ b/amarok/src/engine/helix/helix-sp/helix-include/common/include/atomicbase.h @@ -993,7 +993,7 @@ extern "C" { #elif defined(_MACINTOSH) && defined(__MWERKS__) inline UINT32 -HXAtomicIncRetUINT32(register UINT32* pNum) +HXAtomicIncRetUINT32(UINT32* pNum) { UINT32 zeroOffset = 0; UINT32 temp; @@ -1011,7 +1011,7 @@ HXAtomicIncRetUINT32(register UINT32* pNum) } inline UINT32 -HXAtomicDecRetUINT32(register UINT32* pNum) +HXAtomicDecRetUINT32(UINT32* pNum) { UINT32 zeroOffset = 0; UINT32 temp; |