diff options
author | Peng Wu <alexepico@gmail.com> | 2011-11-14 10:39:16 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2011-11-14 10:41:08 +0800 |
commit | 33d64f5e310e9a61a2031d1988251fe351540255 (patch) | |
tree | 40446b4db3c9ae20400331cb675c56e4870aa8e2 /src/include | |
parent | e1680b821e3d59010c664a3d6046179bb8281430 (diff) | |
download | libpinyin-33d64f5e310e9a61a2031d1988251fe351540255.tar.gz libpinyin-33d64f5e310e9a61a2031d1988251fe351540255.tar.xz libpinyin-33d64f5e310e9a61a2031d1988251fe351540255.zip |
clean up code
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/stl_lite.h | 6 |
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. */ |