[libcxx] r209819 - fix typo

Nico Weber nicolasweber at gmx.de
Thu May 29 07:58:38 PDT 2014


Author: nico
Date: Thu May 29 09:58:38 2014
New Revision: 209819

URL: http://llvm.org/viewvc/llvm-project?rev=209819&view=rev
Log:
fix typo

Modified:
    libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax.pass.cpp
    libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_comp.pass.cpp

Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax.pass.cpp?rev=209819&r1=209818&r2=209819&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax.pass.cpp Thu May 29 09:58:38 2014
@@ -48,7 +48,7 @@ int main()
 #if _LIBCPP_STD_VER > 11
     {
 //  Note that you can't take a reference to a local var, since 
-//  it's address is not a compile-time constant.
+//  its address is not a compile-time constant.
     constexpr static int x = 1;
     constexpr static int y = 0;
     constexpr auto p1 = std::minmax (x, y);

Modified: libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_comp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_comp.pass.cpp?rev=209819&r1=209818&r2=209819&view=diff
==============================================================================
--- libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_comp.pass.cpp (original)
+++ libcxx/trunk/test/algorithms/alg.sorting/alg.min.max/minmax_comp.pass.cpp Thu May 29 09:58:38 2014
@@ -51,7 +51,7 @@ int main()
 #if _LIBCPP_STD_VER > 11
     {
 //  Note that you can't take a reference to a local var, since 
-//  it's address is not a compile-time constant.
+//  its address is not a compile-time constant.
     constexpr static int x = 1;
     constexpr static int y = 0;
     constexpr auto p1 = std::minmax(x, y, std::greater<>());





More information about the cfe-commits mailing list