Updated Boost libraries

This commit is contained in:
Sergii Pylypenko
2013-06-26 17:31:21 +03:00
parent cb4611925f
commit d62c91a533
2623 changed files with 177228 additions and 61242 deletions

View File

@@ -7,7 +7,7 @@
//
// File : $RCSfile$
//
// Version : $Revision: 54633 $
// Version : $Revision: 81913 $
//
// Description : defines model of formal parameter
// ***************************************************************************
@@ -78,7 +78,7 @@ public:
}
// access methods
bool has_argument() const { return m_actual_argument; }
bool has_argument() const { return m_actual_argument!=0; }
argument const& actual_argument() const { return *m_actual_argument; }
argument_ptr actual_argument() { return m_actual_argument; }

View File

@@ -7,7 +7,7 @@
//
// File : $RCSfile$
//
// Version : $Revision: 54633 $
// Version : $Revision: 81913 $
//
// Description : defines model of program environment variable
// ***************************************************************************
@@ -74,7 +74,7 @@ public:
res.reset();
}
bool has_value() const { return m_data->m_value; }
bool has_value() const { return m_data->m_value!=0; }
cstring name() const { return m_data->m_var_name; }
protected: