Blender V5.0
depsgraph_relation.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2020 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#include "intern/depsgraph_relation.hh" /* own include */
10
12
13namespace blender::deg {
14
16{
17 /* Sanity check. */
18 BLI_assert(from != nullptr && to != nullptr);
19 from->outlinks.remove_first_occurrence_and_reorder(this);
20 to->inlinks.remove_first_occurrence_and_reorder(this);
21}
22
23} // namespace blender::deg
#define BLI_assert(a)
Definition BLI_assert.h:46