aboutsummaryrefslogtreecommitdiff
path: root/tools/clang/blink_gc_plugin/tests/class_does_not_require_finalization.cpp
blob: 364099d71b39a9627d501098cf056fd122d78725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "class_does_not_require_finalization.h"

namespace blink {

void DoesNotNeedFinalizer::Trace(Visitor* visitor)
{
}

DoesNotNeedFinalizer2::~DoesNotNeedFinalizer2()
{
}

void DoesNotNeedFinalizer2::Trace(Visitor* visitor)
{
}


}