[clangd] Include the right header for std::isxdigit

llvm-svn: 318782
This commit is contained in:
Sam McCall 2017-11-21 17:18:30 +00:00
parent 7828b25251
commit bcfec0d6d5
1 changed files with 10 additions and 0 deletions

View 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 {