Rename _LIBCPP_DEBUG2 to _LIBCPP_DEBUG.

llvm-svn: 189140
diff --git a/libcxx/test/strings/basic.string/string.access/index.pass.cpp b/libcxx/test/strings/basic.string/string.access/index.pass.cpp
index 76709fe..567eeee 100644
--- a/libcxx/test/strings/basic.string/string.access/index.pass.cpp
+++ b/libcxx/test/strings/basic.string/string.access/index.pass.cpp
@@ -12,7 +12,7 @@
 // const_reference operator[](size_type pos) const;
 //       reference operator[](size_type pos);
 
-#ifdef _LIBCPP_DEBUG2
+#ifdef _LIBCPP_DEBUG
 #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
 #endif
 
@@ -51,7 +51,7 @@
     assert(s2[0] == '\0');
     }
 #endif
-#ifdef _LIBCPP_DEBUG2
+#ifdef _LIBCPP_DEBUG
     {
         std::string s;
         char c = s[0];