Skip to content

Commit 5dc3255

Browse files
jzmaddockvprus
authored andcommitted
Namespace fix for diab (EDG) compiler
Extracted from Boost.Config issue: https://svn.boost.org/trac/boost/ticket/11655.
1 parent 3277249 commit 5dc3255

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

include/boost/program_options/eof_iterator.hpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@ namespace boost {
6868

6969

7070
private: // iterator core operations
71-
friend class iterator_core_access;
71+
#ifdef __DCC__
72+
friend class boost::iterator_core_access;
73+
#else
74+
friend class iterator_core_access;
75+
#endif
7276

7377
void increment()
7478
{

0 commit comments

Comments
 (0)