1//===--- NumericLiteralCaseFixer.h ------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file declares NumericLiteralCaseFixer that standardizes character case
11/// within numeric literals.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_LIB_FORMAT_NUMERICLITERALCASEFIXER_H
16#define LLVM_CLANG_LIB_FORMAT_NUMERICLITERALCASEFIXER_H
17
18#include "TokenAnalyzer.h"
19
20namespace clang {
21namespace format {
22
23class NumericLiteralCaseFixer {
24public:
25 std::pair<tooling::Replacements, unsigned> process(const Environment &Env,
26 const FormatStyle &Style);
27};
28
29} // end namespace format
30} // end namespace clang
31
32#endif
33