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 {


        
_______________________________________________
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to