"examples/vscode:/vscode.git/clone" did not exist on "a51b6cc86a5bef62283562d49497a4f3e0b134d8"
Commit 39171cf0 authored by beder's avatar beder
Browse files

Fixed explicitly qualifying iterator type for gcc

parent b20e0a5e
...@@ -24,8 +24,8 @@ namespace YAML ...@@ -24,8 +24,8 @@ namespace YAML
template<typename> friend class detail::iterator_base; template<typename> friend class detail::iterator_base;
template<typename T, typename S> friend struct as_if; template<typename T, typename S> friend struct as_if;
typedef iterator iterator; typedef YAML::iterator iterator;
typedef const_iterator const_iterator; typedef YAML::const_iterator const_iterator;
Node(); Node();
explicit Node(NodeType::value type); explicit Node(NodeType::value type);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment