bool_set: Use UTF-8 for accented characters.

* include/tr2/bool_set: Use UTF-8 for accented characters.
	* scripts/run_doxygen: Handle Doxygen 1.8.x change.

From-SVN: r211056
This commit is contained in:
Jonathan Wakely 2014-05-29 15:54:42 +01:00 committed by Jonathan Wakely
parent 0b06f4bc50
commit 5db03786b1
3 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2014-05-29 Jonathan Wakely <jwakely@redhat.com>
* include/tr2/bool_set: Use UTF-8 for accented characters.
* scripts/run_doxygen: Handle Doxygen 1.8.x change.
2014-05-08 Joshua Gay <jgay@gnu.org>
PR libstdc++/61117

View File

@ -44,7 +44,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
* bool_set
*
* See N2136, Bool_set: multi-valued logic
* by Hervé Brönnimann, Guillaume Melquiond, Sylvain Pion.
* by Hervé Brönnimann, Guillaume Melquiond, Sylvain Pion.
*
* The implicit conversion to bool is slippery! I may use the new
* explicit conversion. This has been specialized in the language

View File

@ -194,8 +194,15 @@ fi
if $do_latex; then
cd ${outdir}/${mode}
# Also drop in the header file and style sheet
doxygen -w latex header.tex doxygen.sty
# Grrr, Doxygen 1.8.x changed the -w latex options.
need_footer=`doxygen -h | sed -n -e '/-w latex/s=.*footer.*=true=p'`
# Also drop in the header file (maybe footer file) and style sheet
if $need_footer; then
doxygen -w latex header.tex footer.tex doxygen.sty
else
doxygen -w latex header.tex doxygen.sty
fi
echo ::
echo :: LaTeX pages begin with