summaryrefslogtreecommitdiffstats
path: root/clangd/JSONExpr.cpp
diff options
context:
space:
mode:
authorSam McCall <sam.mccall@gmail.com>2017-11-21 17:18:30 +0000
committerSam McCall <sam.mccall@gmail.com>2017-11-21 17:18:30 +0000
commitee8af8077523cdd8b630e2f442a0e5e7e86a228c (patch)
tree1f962a91a58aced15e6abec8b8f42336c3f0dd30 /clangd/JSONExpr.cpp
parentc3f4cc034d8aeb48ac65e8b716711d1081f43764 (diff)
[clangd] Include the right header for std::isxdigit
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@318782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'clangd/JSONExpr.cpp')
-rw-r--r--clangd/JSONExpr.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/clangd/JSONExpr.cpp b/clangd/JSONExpr.cpp
index 48c149bb..893e792d 100644
--- a/clangd/JSONExpr.cpp
+++ b/clangd/JSONExpr.cpp
@@ -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 {