raj.khem created this revision.
raj.khem added reviewers: kadircet, jfb.
raj.khem added a project: clang-tools-extra.
Herald added subscribers: cfe-commits, usaxena95, arphaman, dexonsmith, 
jkorous, ilya-biryukov.
Herald added a project: clang.

Fixes

TOPDIR/build/tmp/work-shared/llvm-project-source-10.0.0-r0/git/clang-tools-extra/clangd/Shutdown.cpp:21:10:
 error: no member named 'abort' in namespace 'std'

  std::abort();
  ~~~~~^

TOPDIR/build/tmp/work-shared/llvm-project-source-10.0.0-r0/git/clang-tools-extra/clangd/Shutdown.cpp:30:10:
 error: no member named 'abort' in namespace 'std'

  std::abort();
  ~~~~~^


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D71965

Files:
  clang-tools-extra/clangd/Shutdown.cpp


Index: clang-tools-extra/clangd/Shutdown.cpp
===================================================================
--- clang-tools-extra/clangd/Shutdown.cpp
+++ clang-tools-extra/clangd/Shutdown.cpp
@@ -9,6 +9,7 @@
 #include "Shutdown.h"
 
 #include <atomic>
+#include <cstdlib>
 #include <thread>
 
 namespace clang {


Index: clang-tools-extra/clangd/Shutdown.cpp
===================================================================
--- clang-tools-extra/clangd/Shutdown.cpp
+++ clang-tools-extra/clangd/Shutdown.cpp
@@ -9,6 +9,7 @@
 #include "Shutdown.h"
 
 #include <atomic>
+#include <cstdlib>
 #include <thread>
 
 namespace clang {
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
  • [PATCH] D71965: inc... Khem Raj via Phabricator via cfe-commits

Reply via email to