From ac19724773171defeef7c1459fc4ad84470042b8 Mon Sep 17 00:00:00 2001 From: richelbilderbeek Date: Sun, 29 Sep 2019 15:07:35 +0200 Subject: [PATCH] OCLint is right: the trivial test is a trivial test --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index fe85c21..2714c84 100644 --- a/main.cpp +++ b/main.cpp @@ -7,7 +7,7 @@ void test() { const int a{1}; const int b{2}; const int c{3}; - assert(a + b == c); + assert(a + b == c); //!OCLINT indeed a trivial test } int main(int argc, char ** argv)