llvm/llvm/lib/BinaryFormat/MsgPackWriter.cpp

//===- MsgPackWriter.cpp - Simple MsgPack writer ----------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
///  \file
///  This file implements a MessagePack writer.
///
//===----------------------------------------------------------------------===//

#include "llvm/BinaryFormat/MsgPackWriter.h"
#include "llvm/BinaryFormat/MsgPack.h"

#include <cmath>

usingnamespacellvm;
usingnamespacemsgpack;

Writer::Writer(raw_ostream &OS, bool Compatible)
    :{}

void Writer::writeNil() {}

void Writer::write(bool b) {}

void Writer::write(int64_t i) {}

void Writer::write(uint64_t u) {}

void Writer::write(double d) {}

void Writer::write(StringRef s) {}

void Writer::write(MemoryBufferRef Buffer) {}

void Writer::writeArraySize(uint32_t Size) {}

void Writer::writeMapSize(uint32_t Size) {}

void Writer::writeExt(int8_t Type, MemoryBufferRef Buffer) {}