Re: [Boost-bugs] [Boost C++ Libraries] #13167: "Unknown compiler version ..." with 1.64 on Visual Studio 15.3

Subject: Re: [Boost-bugs] [Boost C++ Libraries] #13167: "Unknown compiler version ..." with 1.64 on Visual Studio 15.3
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2017-08-20 10:51:52


#13167: "Unknown compiler version ..." with 1.64 on Visual Studio 15.3
---------------------------------+-------------------------------
  Reporter: Tim Bergel <tim@…> | Owner: (none)
      Type: Support Requests | Status: new
 Milestone: To Be Determined | Component: None
   Version: Boost 1.64.0 | Severity: Optimization
Resolution: | Keywords: compiler _MSC_VER
---------------------------------+-------------------------------

Comment (by John Melas <john@…>):

 The fix is to change line 324

 from
 #if (_MSC_VER > 1910)

 to
 #if (_MSC_VER >= 1920)

 in compliance with line 312
 # elif _MSC_VER < 1920

 which accepts _MSC_VER from 1910 to 1919 as compiler version 14.1

-- 
Ticket URL: <https://svn.boost.org/trac10/boost/ticket/13167#comment:1>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-08-20 10:55:05 UTC