mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 18:30:09 +01:00
16 lines
471 B
C++
16 lines
471 B
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 EXECUTABLE_SEMANTICS_COMMON_TRACING_FLAG_H_
|
|
#define EXECUTABLE_SEMANTICS_COMMON_TRACING_FLAG_H_
|
|
|
|
namespace Carbon {
|
|
|
|
// Program option to enable/disable tracing.
|
|
extern bool tracing_output;
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // EXECUTABLE_SEMANTICS_COMMON_TRACING_FLAG_H_
|