aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-01-02Allow through bad_alloc from Error(const Error &) and operator=David Tolnay
2021-01-02Resolve msvc warning on strncpy by replacing with memcpyDavid Tolnay
2021-01-02Simplify to_c_error by using NonNull inlineDavid Tolnay
2021-01-02Clean some unneeded string manipulation from exception conversionDavid Tolnay
2021-01-02Silence -Wunused-private-field warning on macOSDavid Tolnay
2021-01-02Mark error conversion function noexceptDavid Tolnay
2021-01-02Merge pull request #647 from dtolnay/sliceDavid Tolnay
2021-01-02Hide slice implementation details from name lookupDavid Tolnay
2021-01-02Fix slice compilation on MSVCDavid Tolnay
2021-01-02Preserve &[T]'s Rust representation in rust::SliceDavid Tolnay
2021-01-02Merge pull request #646 from dtolnay/swapDavid Tolnay
2021-01-02Restore swapping Str and Slice in member function form onlyDavid Tolnay
2021-01-02Revert "Omit swap member functions from website"David Tolnay
2021-01-02Merge pull request #645 from dtolnay/strDavid Tolnay
2021-01-02Preserve &str's original Rust representation in C++David Tolnay
2021-01-02Merge pull request #644 from dtolnay/resultDavid Tolnay
2021-01-02Decouple C++ exception representation from Rust strDavid Tolnay
2021-01-02Elide template parameters in swaps where unneededDavid Tolnay
2021-01-02Move swap member functions below less-niche functionsDavid Tolnay
2021-01-02Merge pull request #643 from dtolnay/swapDavid Tolnay
2021-01-02Remove Str and Slice swapsDavid Tolnay
2021-01-02Clean up trailing whitespacesDavid Tolnay
2021-01-02Omit swap member functions from websiteDavid Tolnay
2021-01-02Touch up PR 642David Tolnay
2021-01-02Format PR 642 with clang-format 10David Tolnay
2021-01-02Update Box website page to match headerDavid Tolnay
2021-01-02Merge pull request 642 from capickett/swapDavid Tolnay
2021-01-02Remove implicit Box copy operations to match unique_ptrDavid Tolnay
2021-01-02Fix invalid json in vscode launch.jsonDavid Tolnay
2021-01-02Merge pull request #641 from capickett/cargo_testsDavid Tolnay
2021-01-02Merge pull request #640 from capickett/abiDavid Tolnay
2021-01-02Add swap members + ADL functionsCameron Pickett
2021-01-02Include a launch config for cargo testsCameron Pickett
2021-01-02Fix warning mismatching struct and classCameron Pickett
2021-01-02Merge pull request #639 from dtolnay/msvcDavid Tolnay
2021-01-02Restrict MSVC instantiation workaround to return positions onlyDavid Tolnay
2021-01-02Merge pull request #636 from dtolnay/podDavid Tolnay
2021-01-02Remove rust::Slice repr conversion on the C++ sideDavid Tolnay
2021-01-02Merge pull request #637 from dtolnay/msvcDavid Tolnay
2021-01-02Merge pull request #638 from dtolnay/podstrDavid Tolnay
2021-01-02Remove rust::Str repr conversion on the C++ sideDavid Tolnay
2021-01-02MSVC workaround for "C linkage function cannot return C++ class"David Tolnay
2021-01-02Fix a wrong cast in Slice<T>::iterator::operator[]David Tolnay
2021-01-02Explicit instantiations for easy typecheck coverage in test suiteDavid Tolnay
2021-01-01Resolve unnecessary_wraps clippy lintDavid Tolnay
2021-01-01Tweak enum generics error handlingDavid Tolnay
2021-01-01Merge pull request #635 from dtolnay/lifetimesDavid Tolnay
2021-01-01Parameterize shim trait impl blocks over lifetimesDavid Tolnay
2021-01-01Distinguish Impl's impl generics vs generics on the Self typeDavid Tolnay
2021-01-01Remove unused Impl hashing implsDavid Tolnay