Skip to content

Commit cc26462

Browse files
committed
list -> static_list
1 parent 731a879 commit cc26462

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

include/yorel/yomm2/detail.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <boost/mp11/algorithm.hpp>
77
#include <boost/mp11/bind.hpp>
88

9-
#include <yorel/yomm2/detail/list.hpp>
9+
#include <yorel/yomm2/detail/static_list.hpp>
1010

1111
namespace yorel {
1212
namespace yomm2 {

include/yorel/yomm2/detail/list.hpp renamed to include/yorel/yomm2/detail/static_list.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef YOREL_YOMM2_DETAIL_LIST_HPP
2-
#define YOREL_YOMM2_DETAIL_LIST_HPP
1+
#ifndef YOREL_YOMM2_DETAIL_STATIC_LIST_HPP
2+
#define YOREL_YOMM2_DETAIL_STATIC_LIST_HPP
33

44
#include <algorithm>
55
#include <boost/assert.hpp>

include/yorel/yomm2/policies/core.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef YOREL_YOMM2_POLICIES_CORE_HPP
22
#define YOREL_YOMM2_POLICIES_CORE_HPP
33

4-
#include <yorel/yomm2/detail/list.hpp>
4+
#include <yorel/yomm2/detail/static_list.hpp>
55

66
#if defined(YOMM2_SHARED)
77
#if defined(_MSC_VER)

tests/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# See accompanying file LICENSE_1_0.txt
44
# or copy at http://www.boost.org/LICENSE_1_0.txt)
55

6-
add_executable(list list.cpp)
7-
target_link_libraries(list YOMM2::yomm2)
8-
add_test(NAME list COMMAND list)
6+
add_executable(static_list static_list.cpp)
7+
target_link_libraries(static_list YOMM2::yomm2)
8+
add_test(NAME static_list COMMAND static_list)
99

1010
add_executable(test_core test_core.cpp)
1111
target_link_libraries(test_core YOMM2::yomm2)

tests/list.cpp renamed to tests/static_list.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// See accompanying file LICENSE_1_0.txt
44
// or copy at http://www.boost.org/LICENSE_1_0.txt)
55

6-
#include "yorel/yomm2/detail/list.hpp"
6+
#include "yorel/yomm2/detail/static_list.hpp"
77

88
#define BOOST_TEST_MODULE yomm2
99
#include <boost/test/included/unit_test.hpp>

0 commit comments

Comments
 (0)