Bug 1111239 - Remove a compiler check for an unsupported compiler from atomicops_internals_x86_msvc.h; r=josh

This commit is contained in:
Ehsan Akhgari 2014-12-14 14:58:41 -05:00
parent 9601e35dfd
commit 4261267599

View File

@ -42,9 +42,6 @@ inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32* ptr,
return Barrier_AtomicIncrement(ptr, increment);
}
#if defined(_MSC_VER) && (_MSC_VER < 1400)
#error "We require at least vs2005 for MemoryBarrier"
#endif
inline void MemoryBarrier() {
// We use MemoryBarrier from WinNT.h
::MemoryBarrier();