chromium/third_party/angle/src/compiler/preprocessor/DiagnosticsBase.cpp

//
// Copyright 2012 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

#include "compiler/preprocessor/DiagnosticsBase.h"

#include "common/debug.h"

namespace angle
{

namespace pp
{

Diagnostics::~Diagnostics() {}

void Diagnostics::report(ID id, const SourceLocation &loc, const std::string &text)
{}

bool Diagnostics::isError(ID id)
{}

const char *Diagnostics::message(ID id)
{}

}  // namespace pp

}  // namespace angle