//===-- Environment.cpp ---------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "lldb/Utility/Environment.h" usingnamespacelldb_private; char *Environment::Envp::make_entry(llvm::StringRef Key, llvm::StringRef Value) { … } Environment::Envp::Envp(const Environment &Env) { … } Environment::Environment(const char *const *Env) { … } void Environment::insert(iterator first, iterator last) { … }