[llvm-branch-commits] [clang-tools-extra] 23d9392 - Include <cstdlib> for std::abort() in clangd
Hans Wennborg via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Jan 27 06:15:31 PST 2020
Author: Dimitry Andric
Date: 2020-01-27T15:15:06+01:00
New Revision: 23d93923900834dd873cde2ea54f7c3a0e071802
URL: https://github.com/llvm/llvm-project/commit/23d93923900834dd873cde2ea54f7c3a0e071802
DIFF: https://github.com/llvm/llvm-project/commit/23d93923900834dd873cde2ea54f7c3a0e071802.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
(cherry picked from commit 58592f6c49249293f79698cfcb31dba532e12603)
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 llvm-branch-commits
mailing list