Opened 9 years ago
Closed 9 years ago
#9421 closed Bugs (fixed)
VC2013 build error /boost/archive/iterators/transform_width.hpp
Reported by: | anonymous | Owned by: | Robert Ramey |
---|---|---|---|
Milestone: | To Be Determined | Component: | serialization |
Version: | Boost 1.55.0 | Severity: | Problem |
Keywords: | std::min | Cc: |
Description (last modified by )
vc2013 build boost1.55 error:undefined std::min vc2013 std::min in file<algorithm> not in file<xutility> can this:
#if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include <xutility> //add------ #if defined(_MSC_VER) && (_MSC_VER >= 1800) #include <algorithm> #endif
Attachments (1)
Change History (4)
by , 9 years ago
Attachment: | transform_width.hpp added |
---|
comment:1 by , 9 years ago
Component: | None → serialization |
---|---|
Description: | modified (diff) |
Owner: | set to |
comment:2 by , 9 years ago
I"m not getting this
according to my info std::min is defined in <algorithm>
Perhaps this should be ?:
#if defined(_MSC_VER) && (_MSC_VER < 1800) #include <xutility> ##else #include <algorithm> #endif}}}
comment:3 by , 9 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
I couldn't find any problem in the history.
In any case now it's just:
#include <algorithm> // std::min
now. so I'm going to close this.
Robert Ramey
Note:
See TracTickets
for help on using tickets.
patch