//===- FDRRecordConsumer.h - XRay Flight Data Recorder Mode Records -------===// // // 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 "llvm/XRay/FDRRecordConsumer.h" namespace llvm { namespace xray { Error LogBuilderConsumer::consume(std::unique_ptr<Record> R) { … } Error PipelineConsumer::consume(std::unique_ptr<Record> R) { … } } // namespace xray } // namespace llvm