Pepper_56_C++_interfaces
Pepper_56_C++_interfaces
 All Classes Namespaces Files Functions Typedefs Enumerations Macros Groups
logging.h
Go to the documentation of this file.
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef PPAPI_CPP_LOGGING_H_
6 #define PPAPI_CPP_LOGGING_H_
7 
10 
11 #include <cassert>
12 
16 #define PP_DCHECK(a) assert(a)
17 
32 #define PP_NOTREACHED() assert(false)
33 
34 #endif // PPAPI_CPP_LOGGING_H_