From 2146f229086ffe26888d74fffd4bd441bfdaecbe Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 27 Nov 2020 19:38:38 +0100 Subject: Add missing namespace qualification --- src/Patchage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Patchage.cpp b/src/Patchage.cpp index 1703d8b..fb269d5 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -720,7 +720,7 @@ Patchage::save_session(bool close) for (int c = 0; cmd[c].uuid; ++c) { std::string command = cmd[c].command; const size_t index = command.find(var); - if (index != string::npos) { + if (index != std::string::npos) { command.replace(index, var.length(), cmd[c].client_name); } -- cgit v1.2.1