Closed
Bug 840963
Opened 12 years ago
Closed 7 years ago
cleanup 'INT32_MAX' : macro redefinition warnings when building metro widget code
Categories
(Core Graveyard :: Widget: WinRT, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: jimm, Unassigned)
Details
These take up space in the build logs. We should try to get them cleaned up.
MetroAppShell.cpp
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(150) : warning C4005: 'INT8_MIN' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(72) : see previous definition of 'INT8_MIN'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(152) : warning C4005: 'INT16_MIN' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(73) : see previous definition of 'INT16_MIN'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(154) : warning C4005: 'INT32_MIN' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(74) : see previous definition of 'INT32_MIN'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(158) : warning C4005: 'INT64_MIN' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(149) : see previous definition of 'INT64_MIN'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(173) : warning C4005: 'INT8_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(76) : see previous definition of 'INT8_MAX'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(174) : warning C4005: 'UINT8_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(79) : see previous definition of 'UINT8_MAX'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(177) : warning C4005: 'INT16_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(77) : see previous definition of 'INT16_MAX'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(179) : warning C4005: 'UINT16_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(80) : see previous definition of 'UINT16_MAX'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(182) : warning C4005: 'INT32_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(78) : see previous definition of 'INT32_MAX'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(184) : warning C4005: 'UINT32_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(81) : see previous definition of 'UINT32_MAX'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(190) : warning C4005: 'INT64_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(150) : see previous definition of 'INT64_MAX'
c:\Program Files (x86)\Windows Kits\8.0\include\shared\intsafe.h(195) : warning C4005: 'UINT64_MAX' : macro redefinition
c:\tools\msvs10\vc\include\stdint.h(151) : see previous definition of 'UINT64_MAX'
Comment 1•12 years ago
|
||
This is a known issue:
http://connect.microsoft.com/VisualStudio/feedback/details/621653
Here's a similar bug filed in the Boost libraries:
https://svn.boost.org/trac/boost/ticket/4182
| Reporter | ||
Comment 2•12 years ago
|
||
transfer widget win32->winrt
Component: Widget: Win32 → Widget: WinRT
| Assignee | ||
Updated•11 years ago
|
OS: Windows 8 Metro → Windows 8.1
Comment 3•7 years ago
|
||
Closing as we never shipped Metro!
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
Updated•6 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•