Add two missing BOOST_FILESYSTEM_DECL
[SVN r30140]
This commit is contained in:
parent
348391a38a
commit
aa8837925c
@ -91,8 +91,8 @@ namespace boost
|
||||
reference dereference() const { return m_name; }
|
||||
bool equal( const iterator & rhs ) const
|
||||
{ return m_path_ptr == rhs.m_path_ptr && m_pos == rhs.m_pos; }
|
||||
void increment();
|
||||
void decrement();
|
||||
BOOST_FILESYSTEM_DECL void increment();
|
||||
BOOST_FILESYSTEM_DECL void decrement();
|
||||
|
||||
std::string m_name; // cache current element.
|
||||
const path * m_path_ptr; // path being iterated over.
|
||||
|
@ -650,7 +650,7 @@ namespace boost
|
||||
|
||||
// path::iterator implementation --------------------------------------------//
|
||||
|
||||
void path::iterator::increment()
|
||||
BOOST_FILESYSTEM_DECL void path::iterator::increment()
|
||||
{
|
||||
assert( m_pos < m_path_ptr->m_path.size() ); // detect increment past end
|
||||
m_pos += m_name.size();
|
||||
@ -677,7 +677,7 @@ namespace boost
|
||||
m_name = m_path_ptr->m_path.substr( m_pos, end_pos - m_pos );
|
||||
}
|
||||
|
||||
void path::iterator::decrement()
|
||||
BOOST_FILESYSTEM_DECL void path::iterator::decrement()
|
||||
{
|
||||
assert( m_pos ); // detect decrement of begin
|
||||
std::string::size_type end_pos( m_pos );
|
||||
|
Loading…
Reference in New Issue
Block a user