Apply suggestions from code review

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Krishna Vedala 2020-06-25 14:40:47 -04:00 committed by GitHub
parent 66eb05e0da
commit e1b1c71e7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,5 +61,10 @@ void tests() {
std::cout << "passed\n"; std::cout << "passed\n";
} }
/// main function /**
int main() { tests(); } * Main function
*/
int main() {
tests();
return 0;
}