xref: /openbsd-src/gnu/llvm/clang/lib/ExtractAPI/Serialization/SerializerBase.cpp (revision 12c855180aad702bbcca06e0398d774beeafb155)
1*12c85518Srobert //===- ExtractAPI/Serialization/SerializerBase.cpp --------------*- C++ -*-===//
2*12c85518Srobert //
3*12c85518Srobert // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*12c85518Srobert // See https://llvm.org/LICENSE.txt for license information.
5*12c85518Srobert // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*12c85518Srobert //
7*12c85518Srobert //===----------------------------------------------------------------------===//
8*12c85518Srobert ///
9*12c85518Srobert /// \file
10*12c85518Srobert /// This file implements the APISerializer interface.
11*12c85518Srobert ///
12*12c85518Srobert //===----------------------------------------------------------------------===//
13*12c85518Srobert 
14*12c85518Srobert #include "clang/ExtractAPI/Serialization/SerializerBase.h"
15*12c85518Srobert #include "llvm/Support/raw_ostream.h"
16*12c85518Srobert 
17*12c85518Srobert using namespace clang::extractapi;
18*12c85518Srobert 
serialize(llvm::raw_ostream & os)19*12c85518Srobert void APISerializer::serialize(llvm::raw_ostream &os) {}
20