Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit 1902fa2

Browse files
authored
Update format (#159)
1 parent e0846a5 commit 1902fa2

41 files changed

Lines changed: 44 additions & 44 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

proxy.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

44
#ifndef _MSFT_PROXY_
@@ -1217,7 +1217,7 @@ struct add_conv_reduction<std::tuple<Cs0...>, std::tuple<C1, Cs2...>, C>
12171217
template <class... Cs, class C>
12181218
struct add_conv_reduction<std::tuple<Cs...>, std::tuple<>, C>
12191219
: std::type_identity<std::tuple<Cs..., merge_conv_t<
1220-
conv_impl<C::is_direct, typename C::dispatch_type>, C>>> {};
1220+
conv_impl<C::is_direct, typename C::dispatch_type>, C>>> {};
12211221
template <class Cs, class C>
12221222
using add_conv_t = typename add_conv_reduction<std::tuple<>, Cs, C>::type;
12231223

@@ -1230,8 +1230,8 @@ using move_conversion_overload =
12301230
template <class Cs, class F, constraint_level CCL, constraint_level RCL>
12311231
struct add_upward_conversion_conv
12321232
: std::type_identity<add_conv_t<Cs, conv_impl<true,
1233-
upward_conversion_dispatch<F>, copy_conversion_overload<F, CCL>,
1234-
move_conversion_overload<F, RCL>>>> {};
1233+
upward_conversion_dispatch<F>, copy_conversion_overload<F, CCL>,
1234+
move_conversion_overload<F, RCL>>>> {};
12351235
template <class Cs, class F, constraint_level RCL>
12361236
struct add_upward_conversion_conv<Cs, F, constraint_level::none, RCL>
12371237
: std::type_identity<add_conv_t<Cs, conv_impl<true,

samples/PRO_DEF_FREE_DISPATCH.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from PRO_DEF_FREE_DISPATCH.md.
44

samples/PRO_DEF_MEM_DISPATCH.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from PRO_DEF_MEM_DISPATCH.md.
44

samples/PRO_DEF_WEAK_DISPATCH.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from PRO_DEF_WEAK_DISPATCH.md.
44

samples/__msft_lib_proxy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from __msft_lib_proxy.md.
44

samples/access_proxy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from access_proxy.md.
44

samples/allocate_proxy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from allocate_proxy.md.
44

samples/basic_facade_builder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from basic_facade_builder.md.
44

samples/basic_facade_builder/add_convention.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from add_convention.md.
44

samples/basic_facade_builder/add_facade.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33
// This file contains example code from add_facade.md.
44

0 commit comments

Comments
 (0)