summaryrefslogtreecommitdiffstats
path: root/base/win
diff options
context:
space:
mode:
authorjschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-04 02:40:07 +0000
committerjschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-04 02:40:07 +0000
commit049e2ba11db6b96411f8de5c75035607449768cc (patch)
tree0e9d290851ecea0369f0c505e04fe695e292db99 /base/win
parente9d7d2582a0c3c717aa8e3b61767e4b25912ebf5 (diff)
downloadchromium_src-049e2ba11db6b96411f8de5c75035607449768cc.zip
chromium_src-049e2ba11db6b96411f8de5c75035607449768cc.tar.gz
chromium_src-049e2ba11db6b96411f8de5c75035607449768cc.tar.bz2
Convert 64-bit error for pe_image to #pragma message
I need this to make base compile on Win64. I'll follow-up with fixes in crbug.com/167707 Review URL: https://chromiumcodereview.appspot.com/11684007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175089 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win')
-rw-r--r--base/win/pe_image.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/base/win/pe_image.cc b/base/win/pe_image.cc
index fcf03c1..d8a2a4b 100644
--- a/base/win/pe_image.cc
+++ b/base/win/pe_image.cc
@@ -11,11 +11,12 @@ namespace base {
namespace win {
#if defined(_WIN64) && !defined(NACL_WIN64)
-// TODO(rvargas): Bug 27218. Make sure this is ok.
-#error This code is not tested on x64. Please make sure all the base unit tests\
+// TODO(jschuh): crbug.com/167707 Make sure this is ok.
+#pragma message ("Warning: \
+ This code is not tested on x64. Please make sure all the base unit tests\
pass before doing any real work. The current unit tests don't test the\
differences between 32- and 64-bits implementations. Bugs may slip through.\
- You need to improve the coverage before continuing.
+ You need to improve the coverage before continuing.")
#endif
// Structure to perform imports enumerations.