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