Boost logo

Boost Users :

Subject: Re: [Boost-users] [TEST] Throws "Escaping" both BOOST_CHECK_THROW and try{}
From: Merrill Cornish (merrill.cornish_at_[hidden])
Date: 2016-02-10 20:32:32


I understand about throw() and noexcept.

In this particular case, arcSize() is basically a one line wrapper
around at(), so there's no "chain" between the at() and the
BOOST_CHECK_THROW.

DiGSE::size_T Operand::arcsSize(DiGSE::size_T arcSetIndex) const noexcept {
     return d_ptr->mArcSets.at(arcSetIndex).first.size();
}//arcsSize()

using arcContainer_T = std::vector< arc_T >;
using namedSet_T = std::pair< arcContainer_T, std::string >;
using arcSetContainer_T = std::vector< namedSet_T >;
arcSetContainer_T mArcSets;


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net