Skip to content

Commit bac3b95

Browse files
author
mikeblome
committed
adjustments to TOC and landing pages
1 parent 7eb4fe1 commit bac3b95

File tree

3 files changed

+64
-59
lines changed

3 files changed

+64
-59
lines changed

docs/cpp/basic-concepts-cpp.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ms.assetid: 961801e6-2ffd-4bf1-bb71-7f55e48d9c79
1010
This section explains concepts that are critical to understanding C++. C programmers will be familiar with many of these concepts, but there are some subtle differences that can cause unexpected program results. The following topics are included:
1111

1212
- [C++ type system](cpp-type-system-modern-cpp.md)
13-
- [Declarations and definitions](declarations-and-definitions-cpp.md)
1413
- [Scope](scope-visual-cpp.md)
1514
- [Translation units and linkage](program-and-linkage-cpp.md)
1615
- [main function and command-line arguments](main-function-command-line-args.md)

docs/cpp/cpp-language-reference.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,14 @@ Fundamental lexical elements of a C++ program: tokens, comments, operators, keyw
2525
[Basic Concepts](../cpp/basic-concepts-cpp.md)<br/>
2626
Scope, linkage, program startup and termination, storage classes, and types.
2727

28+
[Built-in types](fundamental-types-cpp.md)
29+
The fundamental types that are built into the C++ compiler and their value ranges.
30+
2831
[Standard Conversions](../cpp/standard-conversions.md)<br/>
29-
Type conversions between built-in, or "fundamental," types. Also, arithmetic conversions and conversions among pointer, reference, and pointer-to-member types.
32+
Type conversions between built-in types. Also, arithmetic conversions and conversions among pointer, reference, and pointer-to-member types.
33+
34+
[Declarations and definitions](declarations-and-definitions-cpp.md)
35+
Declaring and defining variables, types and functions.
3036

3137
[Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
3238
The operators in C++.

docs/toc.yml

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -3677,33 +3677,6 @@
36773677
href: cpp/basic-concepts-cpp.md
36783678
- name: C++ type system
36793679
href: cpp/cpp-type-system-modern-cpp.md
3680-
- name: Declarations and definitions
3681-
expanded: false
3682-
items:
3683-
- name: Declarations and definitions
3684-
href: cpp/declarations-and-definitions-cpp.md
3685-
- name: Storage classes
3686-
href: cpp/storage-classes-cpp.md
3687-
- name: auto
3688-
href: cpp/auto-cpp.md
3689-
- name: const
3690-
href: cpp/const-cpp.md
3691-
- name: constexpr
3692-
href: cpp/constexpr-cpp.md
3693-
- name: extern
3694-
href: cpp/extern-cpp.md
3695-
- name: Initializers
3696-
href: cpp/initializers.md
3697-
- name: Aliases and typedefs
3698-
href: cpp/aliases-and-typedefs-cpp.md
3699-
- name: using declaration
3700-
href: cpp/using-declaration.md
3701-
- name: volatile
3702-
href: cpp/volatile-cpp.md
3703-
- name: decltype
3704-
href: cpp/decltype-cpp.md
3705-
- name: Attributes
3706-
href: cpp/attributes.md
37073680
- name: Scope
37083681
href: cpp/scope-visual-cpp.md
37093682
- name: Header files
@@ -3728,37 +3701,37 @@
37283701
href: cpp/type-conversions-and-type-safety-modern-cpp.md
37293702
- name: Standard conversions
37303703
href: cpp/standard-conversions.md
3704+
- name: Built-in types
3705+
expanded: false
3706+
items:
37313707
- name: Built-in types
3732-
expanded: false
3733-
items:
3734-
- name: Built-in types
3735-
href: cpp/fundamental-types-cpp.md
3736-
- name: Data type ranges
3737-
href: cpp/data-type-ranges.md
3738-
- name: nullptr
3739-
href: cpp/nullptr.md
3740-
- name: void
3741-
href: cpp/void-cpp.md
3742-
- name: bool
3743-
href: cpp/bool-cpp.md
3744-
- name: false
3745-
href: cpp/false-cpp.md
3746-
- name: true
3747-
href: cpp/true-cpp.md
3748-
- name: char, wchar_t, char16_t, char32_t
3749-
href: cpp/char-wchar-t-char16-t-char32-t.md
3750-
- name: __int8, __int16, __int32, __int64
3751-
href: cpp/int8-int16-int32-int64.md
3752-
- name: __m64
3753-
href: cpp/m64.md
3754-
- name: __m128
3755-
href: cpp/m128.md
3756-
- name: __m128d
3757-
href: cpp/m128d.md
3758-
- name: __m128i
3759-
href: cpp/m128i.md
3760-
- name: __ptr32, __ptr64
3761-
href: cpp/ptr32-ptr64.md
3708+
href: cpp/fundamental-types-cpp.md
3709+
- name: Data type ranges
3710+
href: cpp/data-type-ranges.md
3711+
- name: nullptr
3712+
href: cpp/nullptr.md
3713+
- name: void
3714+
href: cpp/void-cpp.md
3715+
- name: bool
3716+
href: cpp/bool-cpp.md
3717+
- name: false
3718+
href: cpp/false-cpp.md
3719+
- name: true
3720+
href: cpp/true-cpp.md
3721+
- name: char, wchar_t, char16_t, char32_t
3722+
href: cpp/char-wchar-t-char16-t-char32-t.md
3723+
- name: __int8, __int16, __int32, __int64
3724+
href: cpp/int8-int16-int32-int64.md
3725+
- name: __m64
3726+
href: cpp/m64.md
3727+
- name: __m128
3728+
href: cpp/m128.md
3729+
- name: __m128d
3730+
href: cpp/m128d.md
3731+
- name: __m128i
3732+
href: cpp/m128i.md
3733+
- name: __ptr32, __ptr64
3734+
href: cpp/ptr32-ptr64.md
37623735
- name: Numerical limits
37633736
expanded: false
37643737
items:
@@ -3768,6 +3741,33 @@
37683741
href: cpp/integer-limits.md
37693742
- name: Floating limits
37703743
href: cpp/floating-limits.md
3744+
- name: Declarations and definitions
3745+
expanded: false
3746+
items:
3747+
- name: Declarations and definitions
3748+
href: cpp/declarations-and-definitions-cpp.md
3749+
- name: Storage classes
3750+
href: cpp/storage-classes-cpp.md
3751+
- name: auto
3752+
href: cpp/auto-cpp.md
3753+
- name: const
3754+
href: cpp/const-cpp.md
3755+
- name: constexpr
3756+
href: cpp/constexpr-cpp.md
3757+
- name: extern
3758+
href: cpp/extern-cpp.md
3759+
- name: Initializers
3760+
href: cpp/initializers.md
3761+
- name: Aliases and typedefs
3762+
href: cpp/aliases-and-typedefs-cpp.md
3763+
- name: using declaration
3764+
href: cpp/using-declaration.md
3765+
- name: volatile
3766+
href: cpp/volatile-cpp.md
3767+
- name: decltype
3768+
href: cpp/decltype-cpp.md
3769+
- name: Attributes
3770+
href: cpp/attributes.md
37713771
- name: Built-in operators, precedence, and associativity
37723772
expanded: false
37733773
items:

0 commit comments

Comments
 (0)