fix typo
authorNico Weber <nicolasweber@gmx.de>
Thu, 29 May 2014 14:58:38 +0000 (14:58 +0000)
committerNico Weber <nicolasweber@gmx.de>
Thu, 29 May 2014 14:58:38 +0000 (14:58 +0000)
llvm-svn: 209819

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

index 1774ffd..6ac972a 100644 (file)
@@ -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);
index 66b2e78..771c8f8 100644 (file)
@@ -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<>());