Files
2026-08-12 04:47:48 -04:00

15 lines
252 B
C++

/* SPDX-FileCopyrightText: 2026 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#include "BLI_ustring.hh"
namespace blender {
UString UString::from_ptr_noinline(const char *str)
{
return UString(str);
}
} // namespace blender