corrected bitwise & operator

backed out some previous changes
This commit is contained in:
Robert Ramey
2016-01-09 15:23:48 -08:00
parent 01a3af5cc3
commit a98fdd1edb
16 changed files with 163 additions and 563 deletions

View File

@@ -76,6 +76,10 @@ int main()
// move back to position 0
test(0);
}
catch(std::exception & e){
std::cout << e.what() << '\n';
return 1;
}
catch(...){
std::cout << "test interrupted\n";
return 1;