Skip to content

Commit

Permalink
master: pod_vector.hpp: document pod_vector class.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbell committed Dec 11, 2024
1 parent b04b45a commit ae01e4e
Show file tree
Hide file tree
Showing 7 changed files with 362 additions and 181 deletions.
12 changes: 3 additions & 9 deletions appendix/whats_new/2024.xrst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
xcode
yy
yyyy
dev
}

Release Notes for 2024
Expand All @@ -37,14 +36,9 @@ mm-dd

12-09
=====
#. An option to build a local copy of the user or developer documentation
was added to the install procedure; see :ref:`cmake@include_doc` .
This also affects the :ref:`cmake@cmake_install_docdir` option.

#. The developer documentation for the variable operators and sweep functions
was improved (and the corresponding source code was simplified); see
op_code_var.html and dev_sweep.html in the developer documentation.

An option to build a local copy of the user or developer documentation
was added to the install procedure; see :ref:`cmake@include_doc` .
This also affects the :ref:`cmake@cmake_install_docdir` option.

11-23
=====
Expand Down
2 changes: 1 addition & 1 deletion bin/check_copy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ then
fi
for file_name in $list
do
if [ -e $file_name ]
if [ -e $file_name ] && [ -f $file_name ]
then
$sed \
-e 's|\(SPDX-FileContributor\): *\([0-9]\{4\}\)[-0-9]* |\1: \2-24 |' \
Expand Down
7 changes: 6 additions & 1 deletion bin/check_sort.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,14 @@ do
then
check='no'
fi
if ! $grep BEGIN_SORT_THIS_LINE $file_name > /dev/null
if [ -d "$file_name" ]
then
check='no'
else
if ! $grep BEGIN_SORT_THIS_LINE $file_name > /dev/null
then
check='no'
fi
fi
if [ "$check" == 'yes' ]
then
Expand Down
4 changes: 2 additions & 2 deletions include/cppad/local/op_code_var.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ see :ref:`var_pri_op@PriOp`
{xrst_comment ------------------------------------------------------------- }
// BEGIN_SORT_THIS_LINE_PLUS_2
{xrst_comment // BEGIN_SORT_THIS_LINE_PLUS_2 }
{xrst_toc_table
include/cppad/local/var_op/atomic_op.hpp
include/cppad/local/var_op/binary_op.xrst
Expand All @@ -184,7 +184,7 @@ see :ref:`var_pri_op@PriOp`
include/cppad/local/var_op/two_var.hpp
include/cppad/local/var_op/unary_op.xrst
}
// END_SORT_THIS_LINE_MINUS_2
{xrst_comment // END_SORT_THIS_LINE_MINUS_2 }
Source
******
Expand Down
Loading

0 comments on commit ae01e4e

Please sign in to comment.