tor-browser

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

logging.h (854B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
      6 
      7 #ifndef DOM_MEDIA_WEBRTC_LIBWEBRTCOVERRIDES_RTC_BASE_LOGGING_H_
      8 #define DOM_MEDIA_WEBRTC_LIBWEBRTCOVERRIDES_RTC_BASE_LOGGING_H_
      9 
     10 #pragma GCC diagnostic push
     11 #pragma GCC diagnostic ignored "-Wvarargs"
     12 
     13 #if defined(__clang__)
     14 #  pragma clang diagnostic push
     15 #  pragma clang diagnostic ignored "-Wclass-varargs"
     16 #endif
     17 
     18 #include "../../third_party/libwebrtc/rtc_base/logging.h"
     19 
     20 #pragma GCC diagnostic pop
     21 #if defined(__clang__)
     22 #  pragma clang diagnostic pop
     23 #endif
     24 
     25 #endif  // DOM_MEDIA_WEBRTC_LIBWEBRTCOVERRIDES_RTC_BASE_LOGGING_H_