We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0bba1 commit 79aa6d5Copy full SHA for 79aa6d5
include/yaml-cpp/node/iterator.h
@@ -15,6 +15,9 @@
15
#include <utility>
16
#include <vector>
17
18
+// Assert in place so gcc + libc++ combination properly builds
19
+static_assert(std::is_constructible<YAML::Node, const YAML::Node&>::value, "Node must be copy constructable");
20
+
21
namespace YAML {
22
namespace detail {
23
struct iterator_value : public Node, std::pair<Node, Node> {
0 commit comments