summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.clang-tidy1
-rw-r--r--src/JackDriver.cpp3
2 files changed, 2 insertions, 2 deletions
diff --git a/.clang-tidy b/.clang-tidy
index c0f5b22..330c605 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -45,7 +45,6 @@ Checks: >
-modernize-use-trailing-return-type,
-readability-convert-member-functions-to-static,
-readability-implicit-bool-conversion,
- -readability-isolate-declaration,
-readability-make-member-function-const,
FormatStyle: file
WarningsAsErrors: '*'
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp
index 48f3b9c..8c79084 100644
--- a/src/JackDriver.cpp
+++ b/src/JackDriver.cpp
@@ -148,7 +148,8 @@ JackDriver::create_port_view(Patchage* patchage, const PortID& id)
const int jack_flags = jack_port_flags(jack_port);
- std::string module_name, port_name;
+ std::string module_name;
+ std::string port_name;
port_names(id, module_name, port_name);
ModuleType type = ModuleType::input_output;