chromium/third_party/skia/src/sksl/SkSLOutputStream.cpp

/*
 * Copyright 2019 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "src/sksl/SkSLOutputStream.h"

#include <stdio.h>
#include <memory>

namespace SkSL {

void OutputStream::writeString(const std::string& s) {}

void OutputStream::printf(const char format[], ...) {}

void OutputStream::appendVAList(const char format[], va_list args) {}

}  // namespace SkSL