summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/stl_lite.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/stl_lite.h b/src/include/stl_lite.h
index e92b656..c9f7c88 100644
--- a/src/include/stl_lite.h
+++ b/src/include/stl_lite.h
@@ -91,8 +91,6 @@ namespace std_lite{
_T1 first; ///< @c first is a copy of the first object
_T2 second; ///< @c second is a copy of the second object
- // _GLIBCXX_RESOLVE_LIB_DEFECTS
- // 265. std::pair::pair() effects overly restrictive
/** The default constructor creates @c first and @c second using their
* respective default constructors. */
pair()
@@ -257,8 +255,8 @@ namespace std_lite{
*
* This is equivalent to
* @code
- * std::make_pair(lower_bound(first, last, val, comp),
- * upper_bound(first, last, val, comp))
+ * std_lite::make_pair(lower_bound(first, last, val, comp),
+ * upper_bound(first, last, val, comp))
* @endcode
* but does not actually call those functions.
*/