Opened 12 years ago

Closed 10 years ago

#5429 closed Bugs (duplicate)

compile error in Windows CE 6.0(std::abort)

Reported by: Akira Takahashi <faithandbrave@…> Owned by: No-Maintainer
Milestone: To Be Determined Component: utility
Version: Boost 1.46.1 Severity: Problem
Keywords: Cc:

Description

compile error <boost/assert.hpp>, because Windows CE platform is no std::abort. I needs alternative implementation.

I using follow now(boost non intrusive workaround):

#include <stdexcept>

namespace std {
    static inline abord()
    {
        throw std::runtime_error("abort");
    }
}

Change History (5)

comment:1 by anonymous, 12 years ago

I think this is fixed in trunk, can you try it out?

https://svn.boost.org/svn/boost/trunk/boost/assert.hpp

comment:2 by Akira Takahashi <faithandbrave@…>, 12 years ago

thanks! It's OK by this change.

comment:3 by anonymous, 11 years ago

We also had this issue and the trunk fix solved it. We found it in the latest download of 1.48.0 - how come this is not yet in the released version given this discussion is over 9 months old?

comment:4 by Akira Takahashi <faithandbrave@…>, 11 years ago

to owner, please close tikcet.

comment:5 by viboes, 10 years ago

Resolution: duplicate
Status: newclosed

Duplicated #5213

Note: See TracTickets for help on using tickets.