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
qv4writebarrier.cpp
Go to the documentation of this file.
1// Copyright (C) 2023 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3#include <private/qv4value_p.h>
4#include <private/qv4mm_p.h>
5
6QT_BEGIN_NAMESPACE
7
8namespace {
9 void markHeapBase(QV4::MarkStack* markStack, QV4::Heap::Base *base){
10 if (!base)
11 return;
12 base->mark(markStack);
13 }
14}
15namespace QV4 {
16
25
34
35}
36QT_END_NAMESPACE
void markHeapBase(QV4::MarkStack *markStack, QV4::Heap::Base *base)
Definition qjsvalue.h:23