<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/libcxx/test/std/strings, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2019-11-11T17:49:48+00:00</updated>
<entry>
<title>[libc++][P0980] Marked member functions move/copy/assign of char_traits constexpr.</title>
<updated>2019-11-11T17:49:48+00:00</updated>
<author>
<name>Michael Park</name>
<email>mcypark@gmail.com</email>
</author>
<published>2019-11-08T13:42:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=eb8710cb93a5c21c168ffd97ac2b6872127cb60b'/>
<id>urn:sha1:eb8710cb93a5c21c168ffd97ac2b6872127cb60b</id>
<content type='text'>
Reviewers: ldionne, EricWF, mclow.lists

Reviewed By: ldionne

Subscribers: christof, dexonsmith, libcxx-commits

Tags: #libc

Differential Revision: https://reviews.llvm.org/D68840
</content>
</entry>
<entry>
<title>[NFC] Strip trailing whitespace from libc++</title>
<updated>2019-10-23T18:19:19+00:00</updated>
<author>
<name>Louis Dionne</name>
<email>ldionne@apple.com</email>
</author>
<published>2019-10-23T17:40:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=6b77ebdc919d9212f50fd353b1da0d84d3815bf3'/>
<id>urn:sha1:6b77ebdc919d9212f50fd353b1da0d84d3815bf3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[libc++][NFC] Remove excess trailing newlines from most files</title>
<updated>2019-10-23T15:08:57+00:00</updated>
<author>
<name>Casey Carter</name>
<email>Casey@Carter.net</email>
</author>
<published>2019-10-23T15:08:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=689ce810598bec7b35dd7ebe33ce5c5cce1453c7'/>
<id>urn:sha1:689ce810598bec7b35dd7ebe33ce5c5cce1453c7</id>
<content type='text'>
Testing git commit access.
</content>
</entry>
<entry>
<title>[libcxx][test][NFC] Fix comment typos.</title>
<updated>2019-10-22T22:22:13+00:00</updated>
<author>
<name>Stephan T. Lavavej</name>
<email>stl@microsoft.com</email>
</author>
<published>2019-10-22T22:19:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=437e0e5191ca255db27e86d232020844c1fd08c8'/>
<id>urn:sha1:437e0e5191ca255db27e86d232020844c1fd08c8</id>
<content type='text'>
(Testing git commit access.)
</content>
</entry>
<entry>
<title>Add forward declaration of operator&lt;&lt; in &lt;string_view&gt; as required.</title>
<updated>2019-09-25T18:56:54+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2019-09-25T18:56:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=af4a29af0179995a9d639af45d2c7bacab61f2b0'/>
<id>urn:sha1:af4a29af0179995a9d639af45d2c7bacab61f2b0</id>
<content type='text'>
This declaration was previously missing despite appearing in the
synopsis. Users are still required to include &lt;ostream&gt; to get the
definition of the streaming operator.

llvm-svn: 372909
</content>
</entry>
<entry>
<title>libcxx: Rename .hpp files in libcxx/test/support to .h</title>
<updated>2019-08-21T00:14:12+00:00</updated>
<author>
<name>Nico Weber</name>
<email>nicolasweber@gmx.de</email>
</author>
<published>2019-08-21T00:14:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=cc89063bff0f73ec7049a1dcb5d4688ae6806941'/>
<id>urn:sha1:cc89063bff0f73ec7049a1dcb5d4688ae6806941</id>
<content type='text'>
LLVM uses .h as its extension for header files.

Files renamed using:

    for f in libcxx/test/support/*.hpp; do git mv $f ${f%.hpp}.h; done

References to the files updated using:

    for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do
        a=$(basename $f);
        echo $a;
        rg -l $a libcxx | xargs sed -i '' "s/$a/${a%.hpp}.h/";
    done

HPP include guards updated manually using:

    for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do
      echo ${f%.hpp}.h ;
    done | xargs mvim

Differential Revision: https://reviews.llvm.org/D66104

llvm-svn: 369481
</content>
</entry>
<entry>
<title>Followup to revision 364545: Turns out that clang issues different errors for C++11 vs c++2a, so I tweaked the 'expected-error' bits that I added to match either of them.</title>
<updated>2019-06-27T15:37:31+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2019-06-27T15:37:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=7d8274d54d0305b827e87adae4619abd6433043c'/>
<id>urn:sha1:7d8274d54d0305b827e87adae4619abd6433043c</id>
<content type='text'>
llvm-svn: 364554
</content>
</entry>
<entry>
<title>Provide hashers for string_view only if they are using the default char_traits. Seen on SO: test/std/strings/string.view/string.view.hash/char_type.hash.fail.cpp</title>
<updated>2019-06-27T14:18:32+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2019-06-27T14:18:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=931843023707c0927279e0ad2533dd452b42806c'/>
<id>urn:sha1:931843023707c0927279e0ad2533dd452b42806c</id>
<content type='text'>
llvm-svn: 364545
</content>
</entry>
<entry>
<title>[libc++] Add missing #include in &lt;cwchar&gt; tests</title>
<updated>2019-06-13T18:24:28+00:00</updated>
<author>
<name>Louis Dionne</name>
<email>ldionne@apple.com</email>
</author>
<published>2019-06-13T18:24:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=64c1d456c1b21c7b942fd05337a2dc9241b108ab'/>
<id>urn:sha1:64c1d456c1b21c7b942fd05337a2dc9241b108ab</id>
<content type='text'>
Thanks to Mikhail Maltsev for the patch.
Differential Revision: https://reviews.llvm.org/D63289

llvm-svn: 363290
</content>
</entry>
<entry>
<title>Add include for 'test_macros.h' to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended.</title>
<updated>2019-05-31T18:35:30+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2019-05-31T18:35:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=7fc6a55688c816f5fc1a5481ae7af25be7500356'/>
<id>urn:sha1:7fc6a55688c816f5fc1a5481ae7af25be7500356</id>
<content type='text'>
llvm-svn: 362252
</content>
</entry>
</feed>
