diff options
author | Arthur Cohen <arthur.cohen@embecosm.com> | 2022-05-05 14:19:59 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2022-05-05 14:19:59 +0200 |
commit | a6f5bc6054520f0dc8479215dc1204196ae7767f (patch) | |
tree | b5cc4e6336fdffbcb98b7196b4543a8eed959f2e /gcc | |
parent | 285aabdd3b2d8ee7c158eee34241ba52a31b19d3 (diff) | |
download | gcc-a6f5bc6054520f0dc8479215dc1204196ae7767f.zip gcc-a6f5bc6054520f0dc8479215dc1204196ae7767f.tar.gz gcc-a6f5bc6054520f0dc8479215dc1204196ae7767f.tar.bz2 |
util: Add copyright header on make-unique.h
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rust/util/rust-make-unique.h | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/gcc/rust/util/rust-make-unique.h b/gcc/rust/util/rust-make-unique.h index 5f098d2..77b203e 100644 --- a/gcc/rust/util/rust-make-unique.h +++ b/gcc/rust/util/rust-make-unique.h @@ -1,13 +1,31 @@ +// Copyright (C) 2020-2022 Free Software Foundation, Inc. + +// This file is part of GCC. + +// GCC is free software; you can redistribute it and/or modify it under +// the terms of the GNU General Public License as published by the Free +// Software Foundation; either version 3, or (at your option) any later +// version. + +// GCC is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +// for more details. + +// You should have received a copy of the GNU General Public License +// along with GCC; see the file COPYING3. If not see +// <http://www.gnu.org/licenses/>. + #ifndef RUST_MAKE_UNIQUE_H #define RUST_MAKE_UNIQUE_H +#include <memory> + namespace Rust { template <typename T, typename... Ts> -std::unique_ptr<T> -make_unique (Ts &&... params) -{ - return std::unique_ptr<T> (new T (std::forward<Ts> (params)...)); +std::unique_ptr<T> make_unique(Ts &&...params) { + return std::unique_ptr<T>(new T(std::forward<Ts>(params)...)); } } // namespace Rust |