[docs] Fix build-docs.sh
[llvm-project.git] / clang / lib / ExtractAPI / Serialization / SerializerBase.cpp
blob71fd25b2b2abb5887e820e92ee0da40a7994dd02
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 //===----------------------------------------------------------------------===//
14 #include "clang/ExtractAPI/Serialization/SerializerBase.h"
15 #include "llvm/Support/raw_ostream.h"
17 using namespace clang::extractapi;
19 void APISerializer::serialize(llvm::raw_ostream &os) {}