🔨 Continuing to fix the CI...

This commit is contained in:
ThePhD 2021-03-06 11:05:21 -05:00
parent 42716a63cf
commit bc04471c11
No known key found for this signature in database
GPG Key ID: 1509DB1C0F702BFA
2 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,7 @@ add_custom_target(sol2_single_header_generator ALL
# # # sol3 generated single header library
add_library(sol2_single INTERFACE)
add_library(sol2::sol2_single ALIAS sol2_single)
add_library(sol2::sol2::single ALIAS sol2_single)
set_target_properties(sol2_single
PROPERTIES
EXPORT_NAME sol2::sol2::single

View File

@ -169,6 +169,7 @@ inline namespace sol2_test_container_shims {
{
std::size_t sum = 0;
for (const auto& [k, v] : data) {
(void)k;
sum += v;
}
return static_cast<int>(sum);