[cfe-commits] r92765 - /cfe/trunk/tools/CIndex/CIndex.cpp
Ted Kremenek
kremenek at apple.com
Tue Jan 5 12:55:39 PST 2010
Author: kremenek
Date: Tue Jan 5 14:55:39 2010
New Revision: 92765
URL: http://llvm.org/viewvc/llvm-project?rev=92765&view=rev
Log:
Add back #include of 'cstdio' to hopefully unbreak the build on Linux.
Modified:
cfe/trunk/tools/CIndex/CIndex.cpp
Modified: cfe/trunk/tools/CIndex/CIndex.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/CIndex/CIndex.cpp?rev=92765&r1=92764&r2=92765&view=diff
==============================================================================
--- cfe/trunk/tools/CIndex/CIndex.cpp (original)
+++ cfe/trunk/tools/CIndex/CIndex.cpp Tue Jan 5 14:55:39 2010
@@ -19,6 +19,9 @@
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/System/Program.h"
+// Needed to define L_TMPNAM on some systems.
+#include <cstdio>
+
using namespace clang;
using namespace idx;
More information about the cfe-commits
mailing list