Opened 12 years ago
Closed 8 years ago
#5213 closed Bugs (fixed)
Boost 1.46 headers no longer compile on WinCE
Reported by: | anonymous | Owned by: | viboes |
---|---|---|---|
Milestone: | To Be Determined | Component: | utility |
Version: | Boost 1.46.0 | Severity: | Regression |
Keywords: | wince | Cc: |
Description
boost_1_46_0/boost/assert.hpp(104) : error C2039: 'abort' : is not a member of 'std'
There is no 'abort' function on Windows CE (Visual Studio 2008). Boost 1.45 compiles fine.
Change History (8)
comment:1 by , 12 years ago
Component: | None → utility |
---|---|
Owner: | set to |
comment:2 by , 11 years ago
Keywords: | wince added |
---|
The problem still persists on 1.48.
See also #6349.
comment:3 by , 10 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
[68982] fixes the issue, but has not been merged. I will merge it as soon as the release branch is open.
comment:4 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:6 by , 8 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
comment:7 by , 8 years ago
There is no more call to abort on this file. Could you tell me where is the error?
Note:
See TracTickets
for help on using tickets.
I think this has been fixed in the trunk already. Personally, I think it would be better to use
#define BOOST_ASSERT_MSG(expr, msg) assert(!!(expr) && msg)
That way