diff --git a/MathLib/LinAlg/LinearSolverOptions.cpp b/MathLib/LinAlg/LinearSolverOptions.cpp
index 596efa618ea03b2abd304e6d9bdedb3d36c988d1..9763eda9eb215e03720c6bbde42b37efc4589edf 100644
--- a/MathLib/LinAlg/LinearSolverOptions.cpp
+++ b/MathLib/LinAlg/LinearSolverOptions.cpp
@@ -1,15 +1,22 @@
+/**
+ * \file
+ * \copyright
+ * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
+ *            Distributed under a Modified BSD License.
+ *              See accompanying file LICENSE.txt or
+ *              http://www.opengeosys.org/project/license
+ */
+
 #include "LinearSolverOptions.h"
-* \file
 
 #include <set>
 
 #include "BaseLib/ConfigTree.h"
 
-    //! Configuration tag names of all known linear solvers for their
-    //! configuration in the project file.
-    //! Add your tag name here when you add a new solver.
-    static std::set<std::string>
-        known_linear_solvers{"eigen", "lis", "petsc"};
+//! Configuration tag names of all known linear solvers for their
+//! configuration in the project file.
+//! Add your tag name here when you add a new solver.
+static std::set<std::string> known_linear_solvers{"eigen", "lis", "petsc"};
 
 namespace MathLib
 {