Files
carbon-lang/executable_semantics/common/tracing_flag.h
T
Jon Meow f3cbfc04c6 Move tracing_flag into a common directory (#669)
Intended to combine well with #668, so neither is alone.
2021-07-21 09:57:54 -07:00

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_