[clang-tools-extra] r318782 - [clangd] Include the right header for std::isxdigit

Sam McCall via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 21 09:18:30 PST 2017


Author: sammccall
Date: Tue Nov 21 09:18:30 2017
New Revision: 318782

URL: http://llvm.org/viewvc/llvm-project?rev=318782&view=rev
Log:
[clangd] Include the right header for std::isxdigit

Modified:
    clang-tools-extra/trunk/clangd/JSONExpr.cpp

Modified: clang-tools-extra/trunk/clangd/JSONExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/JSONExpr.cpp?rev=318782&r1=318781&r2=318782&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/JSONExpr.cpp (original)
+++ clang-tools-extra/trunk/clangd/JSONExpr.cpp Tue Nov 21 09:18:30 2017
@@ -1,6 +1,16 @@
+//=== JSONExpr.cpp - JSON expressions, parsing and serialization - C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===---------------------------------------------------------------------===//
+
 #include "JSONExpr.h"
 
 #include "llvm/Support/Format.h"
+#include <cctype>
 
 using namespace llvm;
 namespace clang {




More information about the cfe-commits mailing list