We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68aa84f commit d4d783bCopy full SHA for d4d783b
1 file changed
include/yaml-cpp/node/detail/node.h
@@ -116,7 +116,7 @@ class node : private boost::noncopyable {
116
inline node* GetValueFromMergeKey(const Key& key, node* currentValue,
117
shared_memory_holder pMemory) const {
118
node* mergeValue =
119
- static_cast<const node_ref&>(*m_pRef).get(to_value("<<"), pMemory);
+ static_cast<const node_ref&>(*m_pRef).get(std::string("<<"), pMemory);
120
if (mergeValue) {
121
if (mergeValue->type() == NodeType::Map) {
122
return &mergeValue->get(key, pMemory);
0 commit comments