Fix PR#30303 - no matching function for call to '__ptr_in_range'
authorMarshall Clow <mclow.lists@gmail.com>
Wed, 7 Sep 2016 03:32:06 +0000 (03:32 +0000)
committerMarshall Clow <mclow.lists@gmail.com>
Wed, 7 Sep 2016 03:32:06 +0000 (03:32 +0000)
llvm-svn: 280779

libcxx/include/string
libcxx/test/std/strings/basic.string/string.modifiers/string_append/iterator.pass.cpp
libcxx/test/std/strings/basic.string/string.modifiers/string_assign/iterator.pass.cpp
libcxx/test/std/strings/basic.string/string.modifiers/string_insert/iter_iter_iter.pass.cpp
libcxx/test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_iter_iter.pass.cpp

index cfae0c8..b9e044e 100644 (file)
@@ -2156,12 +2156,18 @@ basic_string<_CharT, _Traits, _Allocator>::append(_InputIterator __first, _Input
     return *this;
 }
 
-template <typename _Tp>
+template <class _Tp>
 bool __ptr_in_range (const _Tp* __p, const _Tp* __first, const _Tp* __last)
 {
     return __first <= __p && __p < __last;
 }
 
+template <class _Tp1, class _Tp2>
+bool __ptr_in_range (const _Tp1* __p, const _Tp2* __first, const _Tp2* __last)
+{
+    return false;
+}
+
 template <class _CharT, class _Traits, class _Allocator>
 template<class _ForwardIterator>
 typename enable_if
index 8c54a38..e834c1b 100644 (file)
@@ -195,4 +195,13 @@ int main()
        assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/");
        }
 
+       { // test appending a different type
+    typedef std::string S;
+       const uint8_t p[] = "ABCD";
+
+       S s;
+       s.append(p, p + 4);
+       assert(s == "ABCD");
+       }
+
 }
index 0d3dac7..20e242d 100644 (file)
@@ -196,4 +196,13 @@ int main()
        s_long.assign(s_long.begin() + 30, s_long.end());
        assert(s_long == "nsectetur/");
        }
+
+       { // test assigning a different type
+    typedef std::string S;
+       const uint8_t p[] = "ABCD";
+
+       S s;
+       s.assign(p, p + 4);
+       assert(s == "ABCD");
+       }
 }
index 1b5baf4..9803d5a 100644 (file)
@@ -186,4 +186,12 @@ int main()
        assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/");
        }
 
+       { // test assigning a different type
+    typedef std::string S;
+       const uint8_t p[] = "ABCD";
+
+       S s;
+       s.insert(s.begin(), p, p + 4);
+       assert(s == "ABCD");
+       }
 }
index abf1521..1231af8 100644 (file)
@@ -1023,4 +1023,18 @@ int main()
        s_long.replace(s_long.begin(), s_long.begin(), s_long.begin(), s_long.end());
        assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/");
        }
+
+       { // test assigning a different type
+    typedef std::string S;
+       const uint8_t pc[] = "ABCD";
+       uint8_t        p[] = "EFGH";
+
+       S s;
+       s.replace(s.begin(), s.end(), pc, pc + 4);
+       assert(s == "ABCD");
+
+       s.clear();
+       s.replace(s.begin(), s.end(), p, p + 4);
+       assert(s == "EFGH");
+       }
 }