Skip to content

Commit 456c952

Browse files
authored
Add entry for precompiled template arguments (#2161)
* Add entry for precompiled template arguments * Remove extra newline
1 parent d422f07 commit 456c952

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

source/docs/yearly-overview/yearly-changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ General Library
9595
- ``cancelWhenActive``: this is a fairly niche use case which is better described as having the trigger's rising edge (``Trigger.rising()``) as an end condition for the command (using ``Command.until()``).
9696
- ``whileActiveContinuously``: however common, this relied on the no-op behavior of scheduling an already-scheduled command. The more correct way to repeat the command if it ends before the falling edge is using ``Command.repeatedly``/``RepeatCommand`` or a ``RunCommand`` -- the only difference is if the command is interrupted, but that is more likely to result in two commands perpetually canceling each other than achieve the desired behavior. Manually implementing a blindly-scheduling binding like ``whileActiveContinuously`` is still possible, though might not be intuitive.
9797

98+
- Precompile common template instantiations to improve C++ compile times.
99+
98100
Breaking Changes
99101
^^^^^^^^^^^^^^^^
100102

0 commit comments

Comments
 (0)