Doc typeo fixes + 1 test fix

This commit is contained in:
Andrzej Krzemienski
2014-09-12 11:57:44 +02:00
parent 55dc4c1dde
commit a913650322
8 changed files with 15 additions and 13 deletions

View File

@ -9,7 +9,7 @@ Type `optional<T>` is __SGI_EQUALITY_COMPARABLE__ whenever `T` is __SGI_EQUALITY
assert(oN != o0);
assert(o1 != oN);
assert(o2 != o1);
assert(o0 != o1);
assert(oN == oN);
assert(o0 == o0);
@ -17,7 +17,7 @@ The converting constructor from `T` as well as from `boost::none` implies the ex
assert(oN != 0);
assert(o1 != boost::none);
assert(o2 != 1);
assert(o0 != 1);
assert(oN == boost::none);
assert(o0 == 0);