Skip to content

Commit 6807b9a

Browse files
author
hornik
committed
Improve URLs.
git-svn-id: https://svn.r-project.org/R/trunk@88287 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 3e39d07 commit 6807b9a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/manual/R-admin.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ For the use of C++ in @R{} packages,
10801080
@c Prior to @R{} 3.6.0 the default C++ standard was
10811081
@c that of the compiler used: currently it is C++17.
10821082

1083-
@uref{https://en.cppreference.com/w/cpp/compiler_support} indicates
1083+
@uref{https://en.cppreference.com/w/cpp/compiler_support.html} indicates
10841084
which versions of common compilers support (parts of) which C++
10851085
standards.
10861086

doc/manual/R-exts.texi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2989,7 +2989,7 @@ for each of the standards: this relies heavily on the reported values of
29892989
@c @I{LLVM} clang 14, 15 default to C++14, 16-20 to C++17
29902990
@c g++ 11-15 default to C++17
29912991

2992-
The webpage @uref{https://en.cppreference.com/w/cpp/compiler_support}
2992+
The webpage @uref{https://en.cppreference.com/w/cpp/compiler_support.html}
29932993
gives some information on which compiler versions are known to support
29942994
recent C++ features.
29952995

@@ -3020,7 +3020,7 @@ Code needing C++14 or later features can check for their presence @emph{via}
30203020
`SD-6 feature tests'@footnote{See
30213021
@uref{https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations}
30223022
or
3023-
@uref{https://en.cppreference.com/w/cpp/experimental/feature_test}.
3023+
@uref{https://en.cppreference.com/w/cpp/experimental/feature_test.html}.
30243024
It seems a reasonable assumption that any compiler promising some C++14
30253025
conformance will provide these---e.g.@: @command{g++} 4.9.x did but
30263026
4.8.5 did not.}. Such a check could be
@@ -3052,7 +3052,7 @@ analogous way.
30523052

30533053
Note that C++17 or later `support' does not mean complete support: use
30543054
feature tests as well as resources such as
3055-
@uref{https://en.cppreference.com/w/cpp/compiler_support},
3055+
@uref{https://en.cppreference.com/w/cpp/compiler_support.html},
30563056
@uref{https://gcc.gnu.org/projects/cxx-status.html} and
30573057
@uref{https://clang.llvm.org/cxx_status.html} to see if the features you
30583058
want to use are widely implemented.
@@ -3154,7 +3154,7 @@ the formerly deprecated meaning of function declarations with an empty
31543154
parameter list to now mean no parameters.@footnote{The latter has been
31553155
implemented in @command{gcc} but not currently in @I{LLVM} nor Apple
31563156
@command{clang}.}(There are many other additions: see for example
3157-
@uref{https://en.cppreference.com/w/c/23}.)
3157+
@uref{https://en.cppreference.com/w/c/23.html}.)
31583158

31593159
As from @R{} 4.5.0, @R{}'s @command{configure} script chooses a compiler
31603160
option which selects C23 if one is available. Some compilers (including
@@ -6552,8 +6552,8 @@ been widely implemented for a least a couple of years. It will become
65526552
the default of GCC 15, and @R{} will default to it if available from
65536553
@R{} 4.5.0.
65546554

6555-
Some of the more significant changes are
6556-
@c https://en.cppreference.com/w/c/23
6555+
@c Some of the more significant changes are
6556+
@c https://en.cppreference.com/w/c/23.html
65576557

65586558
@itemize
65596559

0 commit comments

Comments
 (0)