Opened 9 years ago
Closed 9 years ago
#8882 closed Patches (fixed)
sequence_stack.hpp doesn't build without exception support
Reported by: | Owned by: | Eric Niebler | |
---|---|---|---|
Milestone: | To Be Determined | Component: | xpressive |
Version: | Boost 1.53.0 | Severity: | Problem |
Keywords: | Cc: |
Description
boost/xpressive/detail/utility/sequence_stack.hpp contains a try/catch block, which means it does not build on platforms that don't support exceptions (or where exceptions are disabled). It should instead use the facilities in boost/detail/no_exceptions_support.hpp, so that it works correctly regardless of exception support.
The attached patch, relative to Boost 1.53.0, fixes the problem.
Attachments (1)
Change History (4)
by , 9 years ago
Attachment: | sequence_stack.patch added |
---|
comment:1 by , 9 years ago
comment:2 by , 9 years ago
Status: | new → assigned |
---|
Note:
See TracTickets
for help on using tickets.
Patch to fix