summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/logging.h
blob: 42061c7d44aace5b7f0a7a2a93cf4ba7aca9f5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef PPAPI_CPP_LOGGING_H_
#define PPAPI_CPP_LOGGING_H_

#include <cassert>

#define PP_DCHECK(a) assert(a)

#define PP_NOTREACHED() assert(false)

#endif  // PPAPI_CPP_LOGGING_H_