Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
alias.cc
Go to the documentation of this file.
1// Copyright 2024 The PDFium 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#include "core/fxcrt/debug/alias.h"
6
7#include "build/build_config.h"
8
9namespace pdfium {
10
11#if defined(COMPILER_MSVC)
12#pragma optimize("", off)
13#elif defined(__clang__)
14#pragma clang optimize off
15#endif
16
17void Alias(const void* var) {
18}
19
20#if defined(COMPILER_MSVC)
21#pragma optimize("", on)
22#elif defined(__clang__)
23#pragma clang optimize on
24#endif
25
26} // namespace pdfium
void Alias(const void *var)
Definition alias.cc:17