[llvm] Fix debuginfod build failure when httplib is used. (PR #156107)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 29 14:11:49 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp,h -- llvm/include/llvm/Debuginfod/HTTPServer.h llvm/lib/Debuginfod/HTTPServer.cpp
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/include/llvm/Debuginfod/HTTPServer.h b/llvm/include/llvm/Debuginfod/HTTPServer.h
index 8450735a3..5c9c1082c 100644
--- a/llvm/include/llvm/Debuginfod/HTTPServer.h
+++ b/llvm/include/llvm/Debuginfod/HTTPServer.h
@@ -104,7 +104,7 @@ class HTTPServer {
public:
HTTPServer();
~HTTPServer();
- HTTPServer(HTTPServer&&);
+ HTTPServer(HTTPServer &&);
/// Returns true only if LLVM has been compiled with a working HTTPServer.
static bool isAvailable();
diff --git a/llvm/lib/Debuginfod/HTTPServer.cpp b/llvm/lib/Debuginfod/HTTPServer.cpp
index bff95c120..b384fe812 100644
--- a/llvm/lib/Debuginfod/HTTPServer.cpp
+++ b/llvm/lib/Debuginfod/HTTPServer.cpp
@@ -62,7 +62,7 @@ bool llvm::streamFile(HTTPServerRequest &Request, StringRef FilePath) {
return true;
}
-HTTPServer::HTTPServer(HTTPServer&&) = default;
+HTTPServer::HTTPServer(HTTPServer &&) = default;
#ifdef LLVM_ENABLE_HTTPLIB
``````````
</details>
https://github.com/llvm/llvm-project/pull/156107
More information about the llvm-commits
mailing list