summaryrefslogtreecommitdiffstats
path: root/base/atomicops.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-28 16:51:25 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-28 16:51:25 +0000
commite23f03b175919680e0131838832a70cc3deb1f54 (patch)
tree8281030297ec834458e805a55613ec58e93475d5 /base/atomicops.h
parentf1d0e4590908f89d8d1f64553fa3438fc40f7dc8 (diff)
downloadchromium_src-e23f03b175919680e0131838832a70cc3deb1f54.zip
chromium_src-e23f03b175919680e0131838832a70cc3deb1f54.tar.gz
chromium_src-e23f03b175919680e0131838832a70cc3deb1f54.tar.bz2
windows: Remove vestigal support for /Wp64
This flag was removed from our build in 2008, so we no longer need workarounds to support it. Review URL: http://codereview.chromium.org/7477030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94480 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/atomicops.h')
-rw-r--r--base/atomicops.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/base/atomicops.h b/base/atomicops.h
index 5b2b9dd..a087e3d 100644
--- a/base/atomicops.h
+++ b/base/atomicops.h
@@ -35,11 +35,7 @@
namespace base {
namespace subtle {
-// Bug 1308991. We need this for /Wp64, to mark it safe for AtomicWord casting.
-#ifndef OS_WIN
-#define __w64
-#endif
-typedef __w64 int32 Atomic32;
+typedef int32 Atomic32;
#ifdef ARCH_CPU_64_BITS
// We need to be able to go between Atomic64 and AtomicWord implicitly. This
// means Atomic64 and AtomicWord should be the same type on 64-bit.