From 1c584c8391aba3eac1a34393a2f7b2d0a71addad Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Fri, 5 Apr 2024 16:15:59 +0200
Subject: [PATCH] Add missing return statements

---
 test/localadolcstiffnesstest.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test/localadolcstiffnesstest.cc b/test/localadolcstiffnesstest.cc
index 22944f5e..5c5faef4 100644
--- a/test/localadolcstiffnesstest.cc
+++ b/test/localadolcstiffnesstest.cc
@@ -231,10 +231,10 @@ int main (int argc, char *argv[]) try
 
   }
 
-  // //////////////////////////////
+  return 0;
 }
-catch (Exception& e) {
-
+catch (Exception& e)
+{
   std::cout << e.what() << std::endl;
-
+  return 1;
 }
-- 
GitLab