13 lines
326 B
C++
13 lines
326 B
C++
// SPDX-License-Identifier: BSD-2-Clause
|
|
// Copyright CM4all GmbH
|
|
// author: Max Kellermann <mk@cm4all.com>
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* A tag for overloading copying constructors, telling them to make
|
|
* shallow copies of source data (e.g. copy pointers instead of
|
|
* duplicating the referenced objects).
|
|
*/
|
|
struct ShallowCopy {};
|