You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/build/reference/ob-inline-function-expansion.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ Controls inline expansion of functions.
66
66
Disables inline expansions. By default, expansion occurs at the compiler's discretion on all functions, often referred to as *auto-inlining*.
67
67
68
68
**1**
69
-
Allows expansion only of functions marked [inline](../../misc/inline-inline-forceinline.md), [__inline](../../misc/inline-inline-forceinline.md), or [__forceinline](../../misc/inline-inline-forceinline.md), or in a C++ member function defined in a class declaration.
69
+
Allows expansion only of functions marked [inline](../../cpp/inline-functions-cpp.md), [__inline](../../cpp/inline-functions-cpp.md), or [__forceinline](../../cpp/inline-functions-cpp.md), or in a C++ member function defined in a class declaration.
70
70
71
71
**2**
72
72
The default value. Allows expansion of functions marked as `inline`, `__inline`, or `__forceinline`, and any other function that the compiler chooses.
Copy file name to clipboardExpand all lines: docs/c-language/c-operators.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ translation.priority.ht:
39
39
- "zh-tw"
40
40
---
41
41
# C Operators
42
-
The C operators are a subset of the [C++ operators](../misc/cpp-operators.md).
42
+
The C operators are a subset of the [C++ built-in operators](../cpp/cpp-built-in-operators-precedence-and-associativity.md).
43
43
44
44
There are three types of operators. A unary expression consists of either a unary operator prepended to an operand, or the `sizeof` keyword followed by an expression. The expression can be either the name of a variable or a cast expression. If the expression is a cast expression, it must be enclosed in parentheses. A binary expression consists of two operands joined by a binary operator. A ternary expression consists of three operands joined by the conditional-expression operator.
In this example, `strings` is an array of pointers to `char`. The number of pointers is the number of elements in the array, but is not specified. It is easy to determine the number of pointers by using the `sizeof` operator to calculate the number of elements in the array. The **const** integer value `string_no` is initialized to this number. Because it is a **const** value, `string_no` cannot be modified.
74
74
75
75
## See Also
76
-
[C++ Operators](../misc/cpp-operators.md)
76
+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)
Copy file name to clipboardExpand all lines: docs/c-runtime-library/delete-operator-crt.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,4 +45,4 @@ translation.priority.ht:
45
45
- "zh-tw"
46
46
---
47
47
# operator delete(CRT)
48
-
Beginning in Visual Studio 2013, the Universal C Runtime (UCRT) no longer supports the C++-specific operator new and operator delete functions. These are now part of the C++ Standard Library. For more information, see [new and delete operators](../../cpp/new-and-delete-operators.md) and [delete operator](../../cpp/delete-operator-cpp.md) in the C++ Language Reference.
48
+
Beginning in Visual Studio 2013, the Universal C Runtime (UCRT) no longer supports the C++-specific operator new and operator delete functions. These are now part of the C++ Standard Library. For more information, see [new and delete operators](../cpp/new-and-delete-operators.md) and [delete operator](../cpp/delete-operator-cpp.md) in the C++ Language Reference.
Copy file name to clipboardExpand all lines: docs/c-runtime-library/new-operator-crt.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,4 +45,4 @@ translation.priority.ht:
45
45
- "zh-tw"
46
46
---
47
47
# operator new(CRT)
48
-
Beginning in Visual Studio 2013, the Universal C Runtime (UCRT) no longer supports the C++-specific operator new and operator delete functions. These are now part of the C++ Standard Library. For more information, see [new and delete operators](../../cpp/new-and-delete-operators.md) and [new operator](../../cpp/new-operator-cpp.md) in the C++ Language Reference.
48
+
Beginning in Visual Studio 2013, the Universal C Runtime (UCRT) no longer supports the C++-specific operator new and operator delete functions. These are now part of the C++ Standard Library. For more information, see [new and delete operators](../cpp/new-and-delete-operators.md) and [new operator](../cpp/new-operator-cpp.md) in the C++ Language Reference.
Copy file name to clipboardExpand all lines: docs/c-runtime-library/operator-delete-crt.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,4 +45,4 @@ translation.priority.ht:
45
45
- "zh-tw"
46
46
---
47
47
# operator delete (CRT)
48
-
Beginning in Visual Studio 2013, the Universal C Runtime (UCRT) no longer supports the C++-specific operator new and operator delete functions. These are now part of the C++ Standard Library. For more information, see [new and delete operators](../../cpp/new-and-delete-operators.md) and [delete operator](../../cpp/delete-operator-cpp.md) in the C++ Language Reference.
48
+
Beginning in Visual Studio 2013, the Universal C Runtime (UCRT) no longer supports the C++-specific operator new and operator delete functions. These are now part of the C++ Standard Library. For more information, see [new and delete operators](../cpp/new-and-delete-operators.md) and [delete operator](../cpp/delete-operator-cpp.md) in the C++ Language Reference.
0 commit comments