Просмотр исходного кода

Fix up some no-exception compile failures

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@293623 91177308-0d34-0410-b5e6-96231b3b80d8
Marshall Clow 8 лет назад
Родитель
Сommit
90b3732f7a
1 измененных файлов с 11 добавлено и 11 удалено
  1. 11 11
      test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp

+ 11 - 11
test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp

@@ -18,6 +18,7 @@
 #include "test_allocator.h"
 #include "min_allocator.h"
 
+#ifndef TEST_HAS_NO_EXCEPTIONS
 template <class T>
 struct alloc_imp {
     bool active;
@@ -44,7 +45,7 @@ struct poca_alloc {
 
     alloc_imp<T> *imp;
 
-    poca_alloc(alloc_imp<T> *ximp) : imp (ximp) {}
+    poca_alloc(alloc_imp<T> *imp_) : imp (imp_) {}
 
     template <class U>
     poca_alloc(const poca_alloc<U>& other) : imp(other.imp) {}
@@ -65,6 +66,15 @@ bool operator!=(const poca_alloc<T>& lhs, const poca_alloc<U>& rhs)
     return lhs.imp != rhs.imp;
 }
 
+template <class S>
+void test_assign(S &s1, const S& s2)
+{
+	try { s1 = s2; }
+	catch ( std::bad_alloc &) { return; }
+	assert(false);
+}
+#endif
+
 
 
 template <class S>
@@ -78,16 +88,6 @@ test(S s1, const typename S::allocator_type& a)
     assert(s2.get_allocator() == a);
 }
 
-#ifndef TEST_HAS_NO_EXCEPTIONS
-template <class S>
-void test_assign(S &s1, const S& s2)
-{
-	try { s1 = s2; }
-	catch ( std::bad_alloc &) { return; }
-	assert(false);
-}
-#endif
-
 int main()
 {
     {