[clangd] Include the right header for std::isxdigit
authorSam McCall <sam.mccall@gmail.com>
Tue, 21 Nov 2017 17:18:30 +0000 (17:18 +0000)
committerSam McCall <sam.mccall@gmail.com>
Tue, 21 Nov 2017 17:18:30 +0000 (17:18 +0000)
llvm-svn: 318782

clang-tools-extra/clangd/JSONExpr.cpp

index 48c149b..893e792 100644 (file)
@@ -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 {