summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/common/third_party/numerics/base/logging.h
blob: d4e3e240281875c8c129729fd1940e186729e992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright 2016 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.
//
// logging.h: Compatiblity hacks for importing Chromium's base/numerics.

#ifndef BASE_LOGGING_H_
#define BASE_LOGGING_H_

#include "common/debug.h"

#ifndef CHECK
#define CHECK(X) ASSERT(X)
#endif

// Unfortunately ANGLE relies on ASSERT being an empty statement, which these libs don't respect.
#ifndef NOTREACHED
#define NOTREACHED() 0
#endif

#endif  // BASE_LOGGING_H_