mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 19:20:13 +01:00
This modifies scripts/check_header_guards.py to add the CARBON_ prefix; everything else is pre-commit.
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef CARBON_TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
|
|
#define CARBON_TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
|
|
|
|
#include "toolchain/diagnostics/diagnostic_emitter.h"
|
|
|
|
namespace Carbon {
|
|
|
|
template <typename LocationT>
|
|
inline auto NullDiagnosticLocationTranslator()
|
|
-> DiagnosticLocationTranslator<LocationT>& {
|
|
struct Translator : DiagnosticLocationTranslator<LocationT> {
|
|
auto GetLocation(LocationT /*loc*/) -> DiagnosticLocation override {
|
|
return {};
|
|
}
|
|
};
|
|
static auto* translator = new Translator;
|
|
return *translator;
|
|
}
|
|
|
|
inline auto NullDiagnosticConsumer() -> DiagnosticConsumer& {
|
|
struct Consumer : DiagnosticConsumer {
|
|
auto HandleDiagnostic(const Diagnostic& d) -> void override {}
|
|
};
|
|
static auto* consumer = new Consumer;
|
|
return *consumer;
|
|
}
|
|
|
|
template <typename LocationT>
|
|
inline auto NullDiagnosticEmitter() -> DiagnosticEmitter<LocationT>& {
|
|
static auto* emitter = new DiagnosticEmitter<LocationT>(
|
|
NullDiagnosticLocationTranslator<LocationT>(), NullDiagnosticConsumer());
|
|
return *emitter;
|
|
}
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_DIAGNOSTICS_NULL_DIAGNOSTICS_H_
|