/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
toolchain/driver/tool_runner_base.cpp
21 строка
624 B
Chandler Carruth
Factor out C-string argv building and simplify vlogs (#6478)
11 дек 2025, 01:07
Не верифицирован
11 дек 2025, 01:07
ff8ce31
Код
Авторство
О чём код?
// 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 #include "toolchain/driver/tool_runner_base.h" #include <array> #include <memory> #include <optional> #include "common/vlog.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" namespace Carbon { ToolRunnerBase::ToolRunnerBase(const InstallPaths* install_paths, llvm::raw_ostream* vlog_stream) : installation_(install_paths), vlog_stream_(vlog_stream) {} } // namespace Carbon