[PATCH] D57035: Add missing include (cstdlib) to Demangle.h
Konstantin Zhuravlyov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 22 11:18:52 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL351861: Add missing include (cstdlib) to Demangle.h (authored by kzhuravl, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D57035?vs=182822&id=182946#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57035/new/
https://reviews.llvm.org/D57035
Files:
llvm/trunk/lib/Demangle/Demangle.cpp
Index: llvm/trunk/lib/Demangle/Demangle.cpp
===================================================================
--- llvm/trunk/lib/Demangle/Demangle.cpp
+++ llvm/trunk/lib/Demangle/Demangle.cpp
@@ -11,6 +11,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Demangle/Demangle.h"
+#include <cstdlib>
static bool isItaniumEncoding(const std::string &MangledName) {
size_t Pos = MangledName.find_first_not_of('_');
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57035.182946.patch
Type: text/x-patch
Size: 472 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190122/ee1e3fb3/attachment.bin>
More information about the llvm-commits
mailing list