From 196cf177628d0db3f6d30a174c04d1fdecea37ab Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 11 May 2020 05:43:56 +0200
Subject: [PATCH] [BL/FileTools] Fix clang tidy warnings.

Fix warning readability-inconsistent-declaration-parameter-name.
---
 BaseLib/FileTools.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/BaseLib/FileTools.h b/BaseLib/FileTools.h
index 3dec4cd8ca4..7b1027279eb 100644
--- a/BaseLib/FileTools.h
+++ b/BaseLib/FileTools.h
@@ -36,12 +36,12 @@ bool IsFileExisting(const std::string &strFilename);
  * correctly.
  */
 std::tuple<std::string, std::string::size_type, std::string::size_type>
-getParenthesizedString(std::string const& str,
+getParenthesizedString(std::string const& in,
                        char const open_char,
                        char const close_char,
                        std::string::size_type pos);
 
-std::string constructFormattedFileName(std::string const& prefix,
+std::string constructFormattedFileName(std::string const& format_specification,
                                        std::string const& mesh_name,
                                        int const process_id,
                                        int const timestep,
-- 
GitLab