From 4ab197a8f4f0eaf5c97897244123becfe3d37d14 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 23 Sep 2014 14:08:38 -0700 Subject: Remove some dead links. BUG=none TBR=ajwong@chromium.org Review URL: https://codereview.chromium.org/592423004 Cr-Commit-Position: refs/heads/master@{#296242} --- styleguide/c++/c++11.html | 30 +++++++++--------------------- 1 file changed, 9 insertions(+), 21 deletions(-) (limited to 'styleguide') diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html index 6c5b805..8cd4315 100644 --- a/styleguide/c++/c++11.html +++ b/styleguide/c++/c++11.html @@ -165,9 +165,7 @@ C++11 generalized attributes Automatic Types auto Automatic type deduction - -Tip of the Week #4: Use const auto& and -auto to replace complex declarations +TODO: documentation link Google Style Guide on auto @@ -177,8 +175,7 @@ Style Guide on auto Constant Expressions constexpr Compile-time constant expressions - -Tip of the Week #57: constexpr is forever +TODO: documentation link Not supported in MSVS2013. Google Style Guide on constexpr @@ -261,8 +258,7 @@ explicit specifier Final Declarations final Indicates that a class or function is final and cannot be overridden - -Tip of the Week #54: Controlling Your Inheritance +TODO: documentation link FINAL is already widely used in the codebase. @@ -290,8 +286,7 @@ synthetic function such as a copy constructor type name { [value ..., value]}; Allows any object of primitive, aggregate or class type to be initialized using brace syntax - -Tip of the Week #58: Initializer Lists and the Uniform Initialization Syntax +TODO: documentation link @@ -330,9 +325,7 @@ class C {
C() // copy-initializes var
Allows non-static class members to be initialized at their definitions (outside constructors) - -Tip of the Week #58: Non-Static Class Member Initializers and - + Non-static data members @@ -341,8 +334,7 @@ Non-static data members Null Pointer Constant nullptr Declares a type-safe null pointer - -Tip of the Week #39: Prefer C++11’s nullptr to NULL or 0 +TODO: documentation link Google Style Guidwe. @@ -351,8 +343,7 @@ Tip of the Week #39: Prefer C++11’s nullptr to NULL or 0 Overrides override Indicates that a class or function overrides a base implementation - -Tip of the Week #54: Controlling Your Inheritance +TODO: documentation link OVERRIDE is already widely used in the codebase. @@ -704,8 +695,7 @@ and std::prev Initializer Lists std::initializer_list<T> Allows containers to be initialized with aggregate elements - -Tip of the Week #58: Initializer Lists and the Uniform Initialization Syntax +TODO: documentation link @@ -817,9 +807,7 @@ std::stof, std::stod, std::stold STL Algorithms Functions within <algorithm>. Enhancements to the set of STL algorithms - -Tip of the Week #21: New C++11 STL Algorithms. See -the +See the Algorithms library for a complete list. -- cgit v1.1