resolved most todo and recompiled most examples and tests

This commit is contained in:
Lorenzo Caminiti
2016-06-04 09:41:03 -07:00
parent 128a42c004
commit 21f228d80b
39 changed files with 430 additions and 128 deletions

View File

@@ -53,7 +53,7 @@ public:
vector() : vect_() {
boost::contract::guard c = boost::contract::constructor(this)
.postcondition([&] {
BOOST_CONTRACT_ASSERT(!empty());
BOOST_CONTRACT_ASSERT(empty());
})
;
}