Changes between Initial Version and Version 2 of Ticket #7389


Ignore:
Timestamp:
Oct 29, 2012, 2:25:51 AM (10 years ago)
Author:
viboes
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7389

    • Property Owner set to John Maddock
    • Property Component Noneconfig
  • Ticket #7389 – Description

    initial v2  
    33This macro is defined in boost/config/platform/win32.hpp by
    44
     5
     6{{{
    57#if defined(__MINGW32__) && ((__MINGW32_MAJOR_VERSION > 2) || ((__MINGW32_MAJOR_VERSION == 2) && (__MINGW32_MINOR_VERSION >= 0)))
    68#  define BOOST_HAS_STDINT_H
     
    911#  define BOOST_HAS_UNISTD_H
    1012#endif
     13}}}
     14
    1115
    1216Maybe it can be changed to:
    1317
     18
     19{{{
    1420#if defined(__MINGW32__) && ((__MINGW32_MAJOR_VERSION > 2) || ((__MINGW32_MAJOR_VERSION == 2) && (__MINGW32_MINOR_VERSION >= 0)))
    1521#  define BOOST_HAS_STDINT_H
     
    2026#  define BOOST_HAS_UNISTD_H
    2127#endif
     28}}}