[clang-tools-extra] 58592f6 - Include <cstdlib> for std::abort() in clangd
Dimitry Andric via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 24 11:53:03 PST 2020
Author: Dimitry Andric
Date: 2020-01-24T20:52:37+01:00
New Revision: 58592f6c49249293f79698cfcb31dba532e12603
URL: https://github.com/llvm/llvm-project/commit/58592f6c49249293f79698cfcb31dba532e12603
DIFF: https://github.com/llvm/llvm-project/commit/58592f6c49249293f79698cfcb31dba532e12603.diff
LOG: Include <cstdlib> for std::abort() in clangd
This fixes a "not a member of 'std'" error with e.g. Fedora 32.
Closes: #105
Added:
Modified:
clang-tools-extra/clangd/Shutdown.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clangd/Shutdown.cpp b/clang-tools-extra/clangd/Shutdown.cpp
index dfea46d8dfeb..36d977570a4f 100644
--- a/clang-tools-extra/clangd/Shutdown.cpp
+++ b/clang-tools-extra/clangd/Shutdown.cpp
@@ -9,6 +9,7 @@
#include "Shutdown.h"
#include <atomic>
+#include <cstdlib>
#include <thread>
namespace clang {
More information about the cfe-commits
mailing list