| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | libcxx: Rename .hpp files in libcxx/test/support to .h | Nico Weber | 2019-08-21 | 1 | -71/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | Fix missing includes in format_string.hpp helper | Eric Fiselier | 2018-07-25 | 1 | -4/+5 |
| | | | | | llvm-svn: 337886 | ||||
| * | Fix use of C++14 syntax in C++11 filesystem tests. | Eric Fiselier | 2018-07-23 | 1 | -3/+5 |
| | | | | | llvm-svn: 337666 | ||||
| * | Implement filesystem_error::what() and improve reporting. | Eric Fiselier | 2018-07-23 | 1 | -0/+68 |
| This patch implements the `what()` for filesystem errors. The message includes the 'what_arg', any paths that were specified, and the error code message. Additionally this patch refactors how errors are created, making it easier to report them correctly. llvm-svn: 337664 | |||||

