Skip to content

Instantly share code, notes, and snippets.

@acgetchell
Created May 20, 2022 23:33
Show Gist options
  • Save acgetchell/b1931e063ddfde033dd5702ee42d632f to your computer and use it in GitHub Desktop.
Save acgetchell/b1931e063ddfde033dd5702ee42d632f to your computer and use it in GitHub Desktop.
-- Running vcpkg install
Detecting compiler hash for triplet arm64-osx...
All requested packages are currently installed.
Restored 0 packages from /Users/adam/.cache/vcpkg/archives in 11.38 us. Use --debug to see more details.
Total elapsed time: 2.412 s
The package cgal provides CMake targets:
find_package(CGAL CONFIG REQUIRED)
target_link_libraries(main PRIVATE CGAL::CGAL)
date provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(date CONFIG REQUIRED)
target_link_libraries(main PRIVATE date::date date::date-tz)
docopt provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(docopt CONFIG REQUIRED)
target_link_libraries(main PRIVATE docopt_s)
doctest provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(doctest CONFIG REQUIRED)
target_link_libraries(main PRIVATE doctest::doctest)
eigen3 provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(Eigen3 CONFIG REQUIRED)
target_link_libraries(main PRIVATE Eigen3::Eigen)
The package fmt provides CMake targets:
find_package(fmt CONFIG REQUIRED)
target_link_libraries(main PRIVATE fmt::fmt)
# Or use the header-only version
find_package(fmt CONFIG REQUIRED)
target_link_libraries(main PRIVATE fmt::fmt-header-only)
ms-gsl provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(Microsoft.GSL CONFIG REQUIRED)
target_link_libraries(main PRIVATE Microsoft.GSL::GSL)
pcg is header-only and can be used from CMake via:
find_path(PCG_INCLUDE_DIRS "pcg_extras.hpp")
target_include_directories(main PRIVATE ${PCG_INCLUDE_DIRS})
spdlog provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(spdlog CONFIG REQUIRED)
target_link_libraries(main PRIVATE spdlog::spdlog spdlog::spdlog_header_only)
The package tbb provides CMake targets:
find_package(TBB CONFIG REQUIRED)
target_link_libraries(main PRIVATE TBB::tbb)
tl-expected provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(tl-expected CONFIG REQUIRED)
target_link_libraries(main PRIVATE tl::expected)
tl-function-ref provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(tl-function-ref CONFIG REQUIRED)
target_link_libraries(main PRIVATE tl::function-ref)
-- Running vcpkg install - done
-- The CXX compiler identification is AppleClang 13.1.6.13160021
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- ccache found and enabled
-- Clang-tidy enabled.
-- Using header-only CGAL
-- Targetting Ninja
-- Using /Library/Developer/CommandLineTools/usr/bin/c++ compiler.
-- DARWIN_VERSION=21
-- Mac Leopard detected
-- Found GMP: /Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/debug/lib/libgmp.a
-- Found MPFR: /Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/debug/lib/libmpfr.a
-- Found Boost: /Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include (found suitable version "1.79.0", minimum required is "1.48")
-- Boost include dirs: /Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include
-- Boost libraries:
-- Looking for C++ include pthread.h
-- Looking for C++ include pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Building tests. Look at /tests for unit tests.
-- Look at /tests/logs for spdlog results from unit tests.
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/adam/projects/CDT-plusplus/build
[1/26] Building CXX object tests/CMakeFiles/CDT_test.dir/main.cpp.o
[2/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Move_tracker_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Move_tracker_test.cpp:19:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("MoveTracker special members")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_tracker_test.cpp:66:1: warning: initialization of 'DOCTEST_ANON_VAR_14' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Move type to integer conversion")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_tracker_test.cpp:84:1: warning: initialization of 'DOCTEST_ANON_VAR_17' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("MoveTracker functionality")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[3/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Apply_move_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Apply_move_test.cpp:20:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Apply an ergodic move to 2+1 manifolds" * doctest::may_fail())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[4/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Geometry_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Geometry_test.cpp:18:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Geometry special member and swap properties")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Geometry_test.cpp:64:1: warning: initialization of 'DOCTEST_ANON_VAR_14' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Geometry classification")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Geometry_test.cpp:119:1: warning: initialization of 'DOCTEST_ANON_VAR_19' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Geometry initialization")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[5/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Settings_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Settings_test.cpp:19:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Check settings" * doctest::may_fail())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[6/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Move_always_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Move_always_test.cpp:18:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("MoveStrategy<MOVE_ALWAYS> special member and swap properties")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_always_test.cpp:78:1: warning: initialization of 'DOCTEST_ANON_VAR_15' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("MoveAlways member functions")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_always_test.cpp:126:1: warning: initialization of 'DOCTEST_ANON_VAR_24' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Using the MoveAlways algorithm" * doctest::skip())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[7/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Metropolis_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Metropolis_test.cpp:18:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("MoveStrategy<METROPOLIS> special member and swap properties")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Metropolis_test.cpp:80:1: warning: initialization of 'DOCTEST_ANON_VAR_15' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Metropolis member functions")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Metropolis_test.cpp:148:1: warning: initialization of 'DOCTEST_ANON_VAR_21' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Using the Metropolis algorithm" * doctest::skip())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[8/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Function_ref_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Function_ref_test.cpp:22:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Simple Lambda operations")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Function_ref_test.cpp:44:1: warning: initialization of 'DOCTEST_ANON_VAR_12' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Complex lambda operations")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Function_ref_test.cpp:73:1: warning: initialization of 'DOCTEST_ANON_VAR_17' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Function_ref operations")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[9/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Ergodic_moves_3_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Ergodic_moves_3_test.cpp:25:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO(
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[10/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Move_command_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Move_command_test.cpp:19:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("MoveCommand special members" * doctest::may_fail())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_command_test.cpp:70:1: warning: initialization of 'DOCTEST_ANON_VAR_15' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Invoking a move with a function pointer")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_command_test.cpp:98:1: warning: initialization of 'DOCTEST_ANON_VAR_20' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Invoking a move with a lambda")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_command_test.cpp:128:1: warning: initialization of 'DOCTEST_ANON_VAR_25' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Invoking a move with apply_move and a function pointer")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_command_test.cpp:156:1: warning: initialization of 'DOCTEST_ANON_VAR_30' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("MoveCommand initialization")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_command_test.cpp:219:1: warning: initialization of 'DOCTEST_ANON_VAR_38' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Queueing and executing moves" * doctest::may_fail())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Move_command_test.cpp:414:1: warning: initialization of 'DOCTEST_ANON_VAR_53' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Executing multiple moves on the queue")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[11/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Torus_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Torus_test.cpp:15:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Torus construction")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[12/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Manifold_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:20:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Manifold special member and swap properties")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:112:1: warning: initialization of 'DOCTEST_ANON_VAR_22' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Manifold static members")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:128:1: warning: initialization of 'DOCTEST_ANON_VAR_27' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Manifold functions")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:168:1: warning: initialization of 'DOCTEST_ANON_VAR_34' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Manifold initialization")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:178:9: warning: 'const auto manifold_type' can be declared as 'const auto *const manifold_type' [readability-qualified-auto]
auto const manifold_type = typeid(manifold.get_triangulation()).name();
^~~~~~~~~~
const auto *const
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:189:9: warning: 'const auto geometry_type' can be declared as 'const auto *const geometry_type' [readability-qualified-auto]
auto const geometry_type = typeid(manifold.get_geometry()).name();
^~~~~~~~~~
const auto *const
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:207:9: warning: 'const auto manifold_type' can be declared as 'const auto *const manifold_type' [readability-qualified-auto]
auto const manifold_type = typeid(manifold.get_triangulation()).name();
^~~~~~~~~~
const auto *const
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:218:9: warning: 'const auto geometry_type' can be declared as 'const auto *const geometry_type' [readability-qualified-auto]
auto const geometry_type = typeid(manifold.get_geometry()).name();
^~~~~~~~~~
const auto *const
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:255:9: warning: 'const auto manifold_type' can be declared as 'const auto *const manifold_type' [readability-qualified-auto]
auto const manifold_type = typeid(manifold.get_triangulation()).name();
^~~~~~~~~~
const auto *const
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:266:9: warning: 'const auto geometry_type' can be declared as 'const auto *const geometry_type' [readability-qualified-auto]
auto const geometry_type = typeid(manifold.get_geometry()).name();
^~~~~~~~~~
const auto *const
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:360:1: warning: initialization of 'DOCTEST_ANON_VAR_57' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Manifold function checks")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:401:1: warning: initialization of 'DOCTEST_ANON_VAR_64' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Manifold copying")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:454:1: warning: initialization of 'DOCTEST_ANON_VAR_70' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Manifold update geometry")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:490:1: warning: initialization of 'DOCTEST_ANON_VAR_75' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Manifold mutation")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Manifold_test.cpp:550:1: warning: initialization of 'DOCTEST_ANON_VAR_82' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("3-Manifold validation and fixing" * doctest::may_fail())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[13/26] Building CXX object tests/CMakeFiles/CDT_test.dir/S3Action_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/S3Action_test.cpp:22:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Calculate the bulk action on S3 triangulations")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[14/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Foliated_triangulation_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Foliated_triangulation_test.cpp:23:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("FoliatedTriangulation special member and swap properties")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Foliated_triangulation_test.cpp:118:1: warning: initialization of 'DOCTEST_ANON_VAR_22' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("FoliatedTriangulation free functions")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Foliated_triangulation_test.cpp:320:1: warning: initialization of 'DOCTEST_ANON_VAR_45' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("FoliatedTriangulation3 initialization")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Foliated_triangulation_test.cpp:517:1: warning: initialization of 'DOCTEST_ANON_VAR_66' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("FoliatedTriangulation3 copying")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Foliated_triangulation_test.cpp:552:1: warning: initialization of 'DOCTEST_ANON_VAR_72' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Detecting and fixing problems with vertices and cells")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Foliated_triangulation_test.cpp:877:1: warning: initialization of 'DOCTEST_ANON_VAR_104' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("FoliatedTriangulation3 functions from Delaunay3")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[15/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Utilities_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Utilities_test.cpp:19:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Various string/stream/time utilities")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Utilities_test.cpp:91:1: warning: initialization of 'DOCTEST_ANON_VAR_15' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Printing Delaunay triangulations")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Utilities_test.cpp:111:1: warning: initialization of 'DOCTEST_ANON_VAR_20' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Randomizing functions" * doctest::may_fail())
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Utilities_test.cpp:277:1: warning: initialization of 'DOCTEST_ANON_VAR_40' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Expected points per timeslice")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Utilities_test.cpp:321:9: warning: do not use 'else' after 'return' [readability-else-after-return]
REQUIRE_THROWS_AS(expected_points_per_timeslice(4, 640000, 64),
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2773:38: note: expanded from macro 'REQUIRE_THROWS_AS'
#define REQUIRE_THROWS_AS(expr, ...) DOCTEST_REQUIRE_THROWS_AS(expr, __VA_ARGS__)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2296:46: note: expanded from macro 'DOCTEST_REQUIRE_THROWS_AS'
#define DOCTEST_REQUIRE_THROWS_AS(expr, ...) DOCTEST_ASSERT_THROWS_AS(expr, DT_REQUIRE_THROWS_AS, "", __VA_ARGS__)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2260:11: note: expanded from macro 'DOCTEST_ASSERT_THROWS_AS'
} else { \
^~~~
/Users/adam/projects/CDT-plusplus/tests/Utilities_test.cpp:328:1: warning: initialization of 'DOCTEST_ANON_VAR_55' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Exact number (Gmpzf) conversion")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[16/26] Building CXX object src/CMakeFiles/initialize.dir/initialize.cpp.o
/Users/adam/projects/CDT-plusplus/src/initialize.cpp:51:40: warning: prefer transparent functors 'less<>' [modernize-use-transparent-functors]
std::map<std::string, docopt::value, std::less<string>> args = docopt::docopt(
^ ~~~~~~
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/spdlog/tweakme.h:74:9: warning: 'SPDLOG_FMT_EXTERNAL' macro redefined [clang-diagnostic-macro-redefined]
#define SPDLOG_FMT_EXTERNAL
^
note: previous definition is here
[17/26] Linking CXX executable src/initialize
[18/26] Building CXX object src/CMakeFiles/cdt-opt.dir/cdt-opt.cpp.o
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/spdlog/tweakme.h:74:9: warning: 'SPDLOG_FMT_EXTERNAL' macro redefined [clang-diagnostic-macro-redefined]
#define SPDLOG_FMT_EXTERNAL
^
note: previous definition is here
[19/26] Linking CXX executable src/cdt-opt
[20/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Vertex_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Vertex_test.cpp:20:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Point operations")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Vertex_test.cpp:36:1: warning: initialization of 'DOCTEST_ANON_VAR_9' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Vertex operations")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[21/26] Building CXX object tests/CMakeFiles/CDT_test.dir/Tetrahedron_test.cpp.o
/Users/adam/projects/CDT-plusplus/tests/Tetrahedron_test.cpp:22:1: warning: initialization of 'DOCTEST_ANON_VAR_3' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Construct a tetrahedron in a Delaunay triangulation")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Tetrahedron_test.cpp:80:1: warning: initialization of 'DOCTEST_ANON_VAR_15' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Find distances between points of the tetrahedron")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
/Users/adam/projects/CDT-plusplus/tests/Tetrahedron_test.cpp:166:1: warning: initialization of 'DOCTEST_ANON_VAR_23' with static storage duration may throw an exception that cannot be caught [cert-err58-cpp]
SCENARIO("Construct a foliated tetrahedron in a foliated triangulation")
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2800:24: note: expanded from macro 'SCENARIO'
#define SCENARIO(name) DOCTEST_SCENARIO(name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2716:32: note: expanded from macro 'DOCTEST_SCENARIO'
#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:2012:5: note: expanded from macro 'DOCTEST_TEST_CASE'
DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators)
^
note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:365:29: note: expanded from macro 'DOCTEST_CAT'
#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2)
^
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:364:34: note: expanded from macro 'DOCTEST_CAT_IMPL'
#define DOCTEST_CAT_IMPL(s1, s2) s1##s2
^
note: expanded from here
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/doctest/doctest.h:1438:9: note: possibly throwing constructor declared here
TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite,
^
[22/26] Linking CXX executable tests/CDT_test
[23/26] Building CXX object src/CMakeFiles/cdt.dir/cdt.cpp.o
/Users/adam/projects/CDT-plusplus/src/cdt.cpp:72:40: warning: prefer transparent functors 'less<>' [modernize-use-transparent-functors]
std::map<std::string, docopt::value, std::less<std::string>> args =
^ ~~~~~~~~~~~
/Users/adam/projects/CDT-plusplus/vcpkg_installed/arm64-osx/include/spdlog/tweakme.h:74:9: warning: 'SPDLOG_FMT_EXTERNAL' macro redefined [clang-diagnostic-macro-redefined]
#define SPDLOG_FMT_EXTERNAL
^
note: previous definition is here
[24/26] Linking CXX executable src/cdt
[25/26] Building CXX object src/CMakeFiles/bistellar.dir/bistellar.cpp.o
/Users/adam/projects/CDT-plusplus/src/bistellar.cpp:51:5: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay]
assert(triangulation.tds().is_cell(cit));
^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/assert.h:99:47: note: expanded from macro 'assert'
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __ASSERT_FILE_NAME, __LINE__, #e) : (void)0)
^
/Users/adam/projects/CDT-plusplus/src/bistellar.cpp:68:5: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay]
assert(triangulation.tds().is_valid(edge.first, edge.second, edge.third));
^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/assert.h:99:47: note: expanded from macro 'assert'
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __ASSERT_FILE_NAME, __LINE__, #e) : (void)0)
^
/Users/adam/projects/CDT-plusplus/src/bistellar.cpp:115:3: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay]
assert(new_pivot_vertices.size() == 2);
^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/assert.h:99:47: note: expanded from macro 'assert'
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __ASSERT_FILE_NAME, __LINE__, #e) : (void)0)
^
/Users/adam/projects/CDT-plusplus/src/bistellar.cpp:120:6: warning: an exception may be thrown in function 'main' which should not throw exceptions [bugprone-exception-escape]
auto main() -> int
^
/Users/adam/projects/CDT-plusplus/src/bistellar.cpp:145:3: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay]
assert(cells.size() == dt.number_of_finite_cells());
^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/assert.h:99:47: note: expanded from macro 'assert'
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __ASSERT_FILE_NAME, __LINE__, #e) : (void)0)
^
/Users/adam/projects/CDT-plusplus/src/bistellar.cpp:150:3: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay]
assert(edges.size() == dt.number_of_finite_edges());
^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/assert.h:99:47: note: expanded from macro 'assert'
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __ASSERT_FILE_NAME, __LINE__, #e) : (void)0)
^
/Users/adam/projects/CDT-plusplus/src/bistellar.cpp:214:7: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay,hicpp-no-array-decay]
assert(dt.is_valid());
^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/assert.h:99:47: note: expanded from macro 'assert'
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __ASSERT_FILE_NAME, __LINE__, #e) : (void)0)
^
[26/26] Linking CXX executable src/bistellar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment