Skip to content

Commit

Permalink
ICU-22676 Undefine move32 since it is interpreted system call with MS…
Browse files Browse the repository at this point in the history
…VC ARM64
  • Loading branch information
rp9-next authored and markusicu committed Feb 26, 2024
1 parent fd5d6c9 commit 3c82e68
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions icu4c/source/test/intltest/citrtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ class SCharacterIterator : public CharacterIterator {

return pos;
}

#ifdef move32
// One of the system headers right now is sometimes defining a conflicting macro we don't use
#undef move32
#endif
virtual int32_t move32(int32_t delta, CharacterIterator::EOrigin origin) override {
switch(origin) {
case kStart:
Expand Down

0 comments on commit 3c82e68

Please sign in to comment.