tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

dcheck_is_on.h (537B)


      1 // Copyright 2020 The Chromium Authors
      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 BASE_DCHECK_IS_ON_H_
      6 #define BASE_DCHECK_IS_ON_H_
      7 
      8 #include "base/debug/debugging_buildflags.h"
      9 
     10 #if defined(NDEBUG) && !defined(DCHECK_ALWAYS_ON)
     11 #define DCHECK_IS_ON() false
     12 #else
     13 #define DCHECK_IS_ON() true
     14 #endif
     15 
     16 #if BUILDFLAG(EXPENSIVE_DCHECKS_ARE_ON)
     17 #define EXPENSIVE_DCHECKS_ARE_ON() true
     18 #else
     19 #define EXPENSIVE_DCHECKS_ARE_ON() false
     20 #endif
     21 
     22 #endif  // BASE_DCHECK_IS_ON_H_