33 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8///9/// \file10/// This file declares NumericLiteralCaseFixer that standardizes character case11/// within numeric literals.12///13//===----------------------------------------------------------------------===//14 15#ifndef LLVM_CLANG_LIB_FORMAT_NUMERICLITERALCASEFIXER_H16#define LLVM_CLANG_LIB_FORMAT_NUMERICLITERALCASEFIXER_H17 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 format30} // end namespace clang31 32#endif33