Compare commits

..

1 Commits

Author SHA1 Message Date
Nekotekina 51a5d623e3 Move throw out of include headers 2026-03-05 20:59:02 +01:00
+3 -3
View File
@@ -14,7 +14,9 @@
#include <type_traits>
namespace YAML {
[[noreturn]] void throw_bad_subscript(const YAML::Mark& mark);
[[noreturn]] extern void throw_bad_subscript(const YAML::Mark& mark);
[[noreturn]] extern void throw_bad_insert();
namespace detail {
template <typename Key, typename Enable = void>
struct get_idx {
@@ -201,8 +203,6 @@ inline bool node_data::remove(const Key& key, shared_memory_holder pMemory) {
return false;
}
[[nodiscard]] void throw_bad_insert();
// map
template <typename Key, typename Value>
inline void node_data::force_insert(const Key& key, const Value& value,