[llvm-commits] [llvm] r151973 - /llvm/trunk/lib/Linker/LinkModules.cpp
Duncan Sands
baldrick at free.fr
Sat Mar 3 01:36:58 PST 2012
Author: baldrick
Date: Sat Mar 3 03:36:58 2012
New Revision: 151973
URL: http://llvm.org/viewvc/llvm-project?rev=151973&view=rev
Log:
Include cctype for isdigit. Patch by Stephen Hines.
Modified:
llvm/trunk/lib/Linker/LinkModules.cpp
Modified: llvm/trunk/lib/Linker/LinkModules.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Linker/LinkModules.cpp?rev=151973&r1=151972&r2=151973&view=diff
==============================================================================
--- llvm/trunk/lib/Linker/LinkModules.cpp (original)
+++ llvm/trunk/lib/Linker/LinkModules.cpp Sat Mar 3 03:36:58 2012
@@ -24,6 +24,7 @@
#include "llvm/Support/Path.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Transforms/Utils/ValueMapper.h"
+#include <cctype>
using namespace llvm;
//===----------------------------------------------------------------------===//
More information about the llvm-commits
mailing list