Suppress warnings.

This commit is contained in:
Kohei Takahashi
2015-06-08 21:41:54 +09:00
parent ff25066be2
commit 3521ea3417
3 changed files with 6 additions and 2 deletions

View File

@ -65,8 +65,8 @@ main()
std::cout << pop_back(sv) << std::endl;
// Compile check only
begin(pop_back(sv)) == end(sv);
end(pop_back(sv)) == begin(sv);
(void)(begin(pop_back(sv)) == end(sv));
(void)(end(pop_back(sv)) == begin(sv));
}
// $$$ JDG: TODO add compile fail facility $$$