13 lines
312 B
C++
13 lines
312 B
C++
|
|
/* SPDX-FileCopyrightText: 2023 Blender Foundation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
|
|
||
|
|
#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";
|
||
|
|
}
|