VirtualBox

Changeset 2252

Show
Ignore:
Timestamp:
04/20/07 06:40:47 (2 years ago)
Author:
vboxsync
Message:

killed MSC warning.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/include/iprt/asm.h

    r2247 r2252  
    17861786DECLINLINE(bool) ASMAtomicXchgBool(volatile bool *pf, bool f) 
    17871787{ 
     1788#ifdef _MSC_VER 
     1789    return !!ASMAtomicXchgU8((volatile uint8_t *)pf, (uint8_t)f); 
     1790#else 
    17881791    return (bool)ASMAtomicXchgU8((volatile uint8_t *)pf, (uint8_t)f); 
     1792#endif  
    17891793} 
    17901794 

© 2008 Sun Microsystems, Inc.
ContactPrivacy policy