summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-18 23:56:37 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-18 23:56:37 +0000
commit5895b2023aed7bf5f2a1e9d98063d940457da87e (patch)
tree86dbf6f619dc8382adc58f2ce4e733404f264bd2 /build
parent2a103aed3c94238145c557e24896253bb37f6ec0 (diff)
downloadchromium_src-5895b2023aed7bf5f2a1e9d98063d940457da87e.zip
chromium_src-5895b2023aed7bf5f2a1e9d98063d940457da87e.tar.gz
chromium_src-5895b2023aed7bf5f2a1e9d98063d940457da87e.tar.bz2
Remove intsafe_workaround.h
It's no longer needed. BUG=308740 R=scottmg@chromium.org TBR=cpu Review URL: https://codereview.chromium.org/404443003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284256 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/intsafe_workaround.h27
-rw-r--r--build/precompile.h2
2 files changed, 0 insertions, 29 deletions
diff --git a/build/intsafe_workaround.h b/build/intsafe_workaround.h
deleted file mode 100644
index 8d459cb..0000000
--- a/build/intsafe_workaround.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef BUILD_INTSAFE_WORKAROUND_H_
-#define BUILD_INTSAFE_WORKAROUND_H_
-
-// Workaround for:
-// http://connect.microsoft.com/VisualStudio/feedback/details/621653/
-// http://crbug.com/225822
-// Note that we can't actually include <stdint.h> here because there's other
-// code in third_party that has partial versions of stdint types that conflict.
-#include <intsafe.h>
-#undef INT8_MIN
-#undef INT16_MIN
-#undef INT32_MIN
-#undef INT64_MIN
-#undef INT8_MAX
-#undef UINT8_MAX
-#undef INT16_MAX
-#undef UINT16_MAX
-#undef INT32_MAX
-#undef UINT32_MAX
-#undef INT64_MAX
-#undef UINT64_MAX
-
-#endif // BUILD_INTSAFE_WORKAROUND_H_
diff --git a/build/precompile.h b/build/precompile.h
index ab678ca..a3c5193 100644
--- a/build/precompile.h
+++ b/build/precompile.h
@@ -106,5 +106,3 @@
#include <string>
#include <utility>
#include <vector>
-
-#include "intsafe_workaround.h"