forked from OSchip/llvm-project
[clangd] Include the right header for std::isxdigit
llvm-svn: 318782
This commit is contained in:
parent
7828b25251
commit
bcfec0d6d5
|
@ -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 "JSONExpr.h"
|
||||||
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
|
#include <cctype>
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
namespace clang {
|
namespace clang {
|
||||||
|
|
Loading…
Reference in New Issue