Skip to content

Commit

Permalink
Temporarily remove empty all_of header to get docs to build
Browse files Browse the repository at this point in the history
  • Loading branch information
braxtons12 committed Jan 30, 2024
1 parent e5315e1 commit 3e0bc5b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 34 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ set(HYPERION_MPL_HEADERS
"${HYPERION_MPL_INCLUDE_PATH}/mpl/list.h"
"${HYPERION_MPL_INCLUDE_PATH}/mpl/value.h"
"${HYPERION_MPL_INCLUDE_PATH}/mpl/algorithms.h"
"${HYPERION_MPL_INCLUDE_PATH}/mpl/algorithms/all_of.h"
#"${HYPERION_MPL_INCLUDE_PATH}/mpl/algorithms/all_of.h"
"${HYPERION_MPL_INCLUDE_PATH}/mpl/concepts.h"
"${HYPERION_MPL_INCLUDE_PATH}/mpl/concepts/comparable.h"
"${HYPERION_MPL_INCLUDE_PATH}/mpl/concepts/operator_able.h"
Expand Down
2 changes: 0 additions & 2 deletions include/hyperion/mpl/algorithms.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,4 @@
#ifndef HYPERION_MPL_ALGORITHMS_H
#define HYPERION_MPL_ALGORITHMS_H

#include <hyperion/mpl/algorithms/all_of.h>

#endif // HYPERION_MPL_ALGORITHMS_H
27 changes: 0 additions & 27 deletions include/hyperion/mpl/algorithms/all_of.h

This file was deleted.

8 changes: 4 additions & 4 deletions xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ local hyperion_mpl_headers = {
"$(projectdir)/include/hyperion/mpl/type_traits.h",
"$(projectdir)/include/hyperion/mpl/value.h",
}
local hyperion_mpl_algorithms_headers = {
"$(projectdir)/include/hyperion/mpl/algorithms/all_of.h",
}
--local hyperion_mpl_algorithms_headers = {
-- "$(projectdir)/include/hyperion/mpl/algorithms/all_of.h",
--}
local hyperion_mpl_concepts_headers = {
"$(projectdir)/include/hyperion/mpl/concepts/comparable.h",
"$(projectdir)/include/hyperion/mpl/concepts/operator_able.h",
Expand All @@ -72,7 +72,7 @@ target("hyperion_mpl", function()
add_includedirs("$(projectdir)/include", { public = true })
add_headerfiles(hyperion_mpl_main_header, { prefixdir = "hyperion", public = true })
add_headerfiles(hyperion_mpl_headers, { prefixdir = "hyperion/mpl", public = true })
add_headerfiles(hyperion_mpl_algorithms_headers, { prefixdir = "hyperion/mpl/algorithms", public = true })
--add_headerfiles(hyperion_mpl_algorithms_headers, { prefixdir = "hyperion/mpl/algorithms", public = true })
add_headerfiles(hyperion_mpl_concepts_headers, { prefixdir = "hyperion/mpl/concepts", public = true })
add_headerfiles(hyperion_mpl_type_traits_headers, { prefixdir = "hyperion/mpl/type_traits", public = true })
set_default(true)
Expand Down

0 comments on commit 3e0bc5b

Please sign in to comment.