diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-01-29 19:52:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-29 19:52:38 -0500 |
commit | 5f4647df7da58aa22be21dd26cfa6de7c5f106c9 (patch) | |
tree | 4bbcaee76bde35ddc6eff9a1c639866cf278b353 /src/common/make_unique_for_overwrite.h | |
parent | 3aab57452153c3dfa8591809bc09797da03b44dc (diff) | |
parent | d5fc56db4bdebcf4f45e39e9c9d0f40229de8cea (diff) |
Merge pull request #9705 from behunin/patch-1
Move to Clang Format 15
Diffstat (limited to 'src/common/make_unique_for_overwrite.h')
-rw-r--r-- | src/common/make_unique_for_overwrite.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/common/make_unique_for_overwrite.h b/src/common/make_unique_for_overwrite.h index c7413cf51..17f81bba4 100644 --- a/src/common/make_unique_for_overwrite.h +++ b/src/common/make_unique_for_overwrite.h @@ -9,17 +9,19 @@ namespace Common { template <class T> -requires(!std::is_array_v<T>) std::unique_ptr<T> make_unique_for_overwrite() { + requires(!std::is_array_v<T>) +std::unique_ptr<T> make_unique_for_overwrite() { return std::unique_ptr<T>(new T); } template <class T> -requires std::is_unbounded_array_v<T> std::unique_ptr<T> make_unique_for_overwrite(std::size_t n) { + requires std::is_unbounded_array_v<T> +std::unique_ptr<T> make_unique_for_overwrite(std::size_t n) { return std::unique_ptr<T>(new std::remove_extent_t<T>[n]); } template <class T, class... Args> -requires std::is_bounded_array_v<T> + requires std::is_bounded_array_v<T> void make_unique_for_overwrite(Args&&...) = delete; } // namespace Common |