summaryrefslogtreecommitdiff
path: root/tests/run/cpp_forwarding_ref.pyx
Commit message (Collapse)AuthorAgeFilesLines
* Resolve some issues with "cpp_locals" (GH-4265)da-woods2021-07-191-1/+1
| | | | | | | * Fix class attributes access where cpp_locals=False. * Add "no-cpp-locals" tag to mark a test as not suitable for running with "cpp_locals=True". * Add a list of "extra_directives" to runtests as additional test mode. Resolves some issues in https://github.com/cython/cython/issues/4266
* Add support for C++17 execution policy parameter (GH-3790)Ashwin Srinath2021-05-251-0/+29
| | | | | * Add execution policy overloads to all algorithms * Add update_cpp17_extension for cpp17 tests * Fix type deduction logic for forwarding reference argument
* Avoid C compiler warnings about unused variables in test.Stefan Behnel2020-10-031-0/+2
|
* Add support for forwarding references (GH-3821)Ashwin Srinath2020-10-031-0/+35
See, for example, https://isocpp.org/blog/2012/11/universal-references-in-c11-scott-meyers Closes #3814