Skip to content

Commit 95686b9

Browse files
committed
Use https, not http for the learncpp url
1 parent 8a90f89 commit 95686b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/cpp11.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Typical bottlenecks that C++ can address include:
4141
The aim of this vignette is to discuss only those aspects of C++ and cpp11 that are absolutely necessary to help you eliminate bottlenecks in your code.
4242
We won't spend much time on advanced features like object-oriented programming or templates because the focus is on writing small, self-contained functions, not big programs.
4343
A working knowledge of C++ is helpful, but not essential.
44-
Many good tutorials and references are freely available, including <http://www.learncpp.com/> and <https://en.cppreference.com/w/cpp>.
44+
Many good tutorials and references are freely available, including <https://www.learncpp.com/> and <https://en.cppreference.com/w/cpp>.
4545
For more advanced topics, the _Effective C++_ series by Scott Meyers is a popular choice.
4646

4747
### Outline

0 commit comments

Comments
 (0)