Files
test/source/blender/blenlib/intern/virtual_array.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
340 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bli
*/
#include "BLI_virtual_array.hh"
#include <iostream>
void blender::internal::print_mutable_varray_span_warning()
{
std::cout << "Warning: Call `save()` to make sure that changes persist in all cases.\n";
}