//===- ArchitectureSet.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 // //===----------------------------------------------------------------------===// // // Implements the architecture set. // //===----------------------------------------------------------------------===// #include "llvm/TextAPI/ArchitectureSet.h" #include "llvm/Support/raw_ostream.h" namespace llvm { namespace MachO { ArchitectureSet::ArchitectureSet(const std::vector<Architecture> &Archs) : … { … } size_t ArchitectureSet::count() const { … } operator basic_string() operator vector() void ArchitectureSet::print(raw_ostream &os) const { … } raw_ostream &operator<<(raw_ostream &os, ArchitectureSet set) { … } } // end namespace MachO. } // end namespace llvm.