mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Fixed regression
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@664 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
parent
1abb1d5495
commit
24530c4e3c
1 changed files with 2 additions and 2 deletions
|
|
@ -98,12 +98,12 @@ namespace detail
|
|||
}
|
||||
expectation& at_least( std::size_t min )
|
||||
{
|
||||
i_ = boost::make_shared< detail::exactly >( min );
|
||||
i_ = boost::make_shared< detail::at_least >( min );
|
||||
return *this;
|
||||
}
|
||||
expectation& at_most( std::size_t max )
|
||||
{
|
||||
i_ = boost::make_shared< detail::exactly >( max );
|
||||
i_ = boost::make_shared< detail::at_most >( max );
|
||||
return *this;
|
||||
}
|
||||
expectation& between( std::size_t min, std::size_t max )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue