Skip to content

Commit a57a129

Browse files
committed
enum class -> enum struct
1 parent 2c7fb86 commit a57a129

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/adapters/hybrid_adapter_many_sorters.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018-2022 Morwenn
2+
* Copyright (c) 2018-2025 Morwenn
33
* SPDX-License-Identifier: MIT
44
*/
55
#include <iterator>
@@ -11,7 +11,7 @@
1111

1212
namespace
1313
{
14-
enum class sorter_type
14+
enum struct sorter_type
1515
{
1616
bidirectional,
1717
random_access

tests/adapters/hybrid_adapter_nested.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015-2022 Morwenn
2+
* Copyright (c) 2015-2025 Morwenn
33
* SPDX-License-Identifier: MIT
44
*/
55
#include <iterator>
@@ -13,7 +13,7 @@
1313
namespace
1414
{
1515
// Type of sorter used for checks
16-
enum class sorter_type
16+
enum struct sorter_type
1717
{
1818
forward,
1919
bidirectional,

tests/adapters/hybrid_adapter_sfinae.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
namespace
1515
{
1616
// Type of sorter used for checks
17-
enum class sorter_type
17+
enum struct sorter_type
1818
{
1919
integer,
2020
floating_point,

0 commit comments

Comments
 (0)