From b56121fb3b946f84a4418687a7c47fd78b9ecc8d Mon Sep 17 00:00:00 2001 From: Alexander Arlt Date: Fri, 9 Sep 2022 16:47:26 -0500 Subject: [PATCH] solc/CommandLineInterface.cpp: fix style. --- solc/CommandLineInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index c81b65186..dfbd976b3 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -505,7 +505,7 @@ void CommandLineInterface::readInputFiles() if (m_options.input.mode == InputMode::StandardJson) { solAssert(!m_standardJsonInput.has_value()); - m_standardJsonInput = move(fileContent); + m_standardJsonInput = std::move(fileContent); } else {