Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Thanks OCLint
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Sep 29, 2019
1 parent 2f6babf commit dab5d5c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

/// All tests are called from here, only in debug mode
void test() {
assert(1 + 1 == 2);
//A first trivial test
const int a{1};
const int b{2};
const int c{3};
assert(a + b == c);
}

int main(int argc, char ** argv)
Expand Down

0 comments on commit dab5d5c

Please sign in to comment.