Skip to content

Commit

Permalink
list -> static_list
Browse files Browse the repository at this point in the history
  • Loading branch information
jll63 committed Sep 1, 2024
1 parent 731a879 commit cc26462
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion include/yorel/yomm2/detail.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <boost/mp11/algorithm.hpp>
#include <boost/mp11/bind.hpp>

#include <yorel/yomm2/detail/list.hpp>
#include <yorel/yomm2/detail/static_list.hpp>

namespace yorel {
namespace yomm2 {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef YOREL_YOMM2_DETAIL_LIST_HPP
#define YOREL_YOMM2_DETAIL_LIST_HPP
#ifndef YOREL_YOMM2_DETAIL_STATIC_LIST_HPP
#define YOREL_YOMM2_DETAIL_STATIC_LIST_HPP

#include <algorithm>
#include <boost/assert.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/yorel/yomm2/policies/core.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef YOREL_YOMM2_POLICIES_CORE_HPP
#define YOREL_YOMM2_POLICIES_CORE_HPP

#include <yorel/yomm2/detail/list.hpp>
#include <yorel/yomm2/detail/static_list.hpp>

#if defined(YOMM2_SHARED)
#if defined(_MSC_VER)
Expand Down
6 changes: 3 additions & 3 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# See accompanying file LICENSE_1_0.txt
# or copy at http://www.boost.org/LICENSE_1_0.txt)

add_executable(list list.cpp)
target_link_libraries(list YOMM2::yomm2)
add_test(NAME list COMMAND list)
add_executable(static_list static_list.cpp)
target_link_libraries(static_list YOMM2::yomm2)
add_test(NAME static_list COMMAND static_list)

add_executable(test_core test_core.cpp)
target_link_libraries(test_core YOMM2::yomm2)
Expand Down
2 changes: 1 addition & 1 deletion tests/list.cpp → tests/static_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)

#include "yorel/yomm2/detail/list.hpp"
#include "yorel/yomm2/detail/static_list.hpp"

#define BOOST_TEST_MODULE yomm2
#include <boost/test/included/unit_test.hpp>
Expand Down

0 comments on commit cc26462

Please sign in to comment.