Skip to content

Commit 336f76c

Browse files
ShepherdSoasisThePhD
authored andcommitted
🔥 Remove debug header
1 parent 034700e commit 336f76c

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# # # # sol2
2424
# # # Required minimum version statement
25-
cmake_minimum_required(VERSION 3.16.0)
25+
cmake_minimum_required(VERSION 3.26.0)
2626
# # # Project Include - file that is included after project declaration is finished
2727
set(CMAKE_PROJECT_INCLUDE "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Includes/Project.cmake")
2828

documentation/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# # # # sol2, documentation generation
2424
# # # Required minimum version statement
25-
cmake_minimum_required(VERSION 3.16.0)
25+
cmake_minimum_required(VERSION 3.26.0)
2626

2727
find_package(Doxygen REQUIRED)
2828
find_package(Python3 REQUIRED)

include/sol/stack_check_unqualified.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ namespace sol { namespace stack {
582582
template <typename T, std::size_t N, type expect>
583583
struct unqualified_checker<exhaustive_until<T, N>, expect> {
584584
template <typename K, typename V, typename Handler>
585-
static bool check_two(types<K, V>, lua_State* arg_L, int relindex, type indextype, Handler&& handler, record& tracking) {
585+
static bool check_two(types<K, V>, lua_State* arg_L, int relindex, type, Handler&& handler, record& tracking) {
586586
tracking.use(1);
587587

588588
#if SOL_IS_ON(SOL_SAFE_STACK_CHECK)

include/sol/stack_push.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@
4242
#include <variant>
4343
#endif // Can use variant
4444

45-
#include <sol/debug.hpp>
46-
4745
namespace sol { namespace stack {
4846
namespace stack_detail {
4947
template <typename T>

single/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
# # # # sol3, single
2424
# # # Required minimum version statement
25-
cmake_minimum_required(VERSION 3.15.0)
25+
cmake_minimum_required(VERSION 3.26.0)
2626

27-
find_package(PythonInterp 3 REQUIRED)
27+
find_package(Python3 REQUIRED)
2828

2929
# to generate, need all of the existing header files
3030
file(GLOB sol2_generated_header_sources ${CMAKE_CURRENT_SOURCE_DIR}/../include/**/*.*)

0 commit comments

Comments
 (0)