Skip to content

Commit 585e347

Browse files
authored
Merge pull request #4805 from Rageking8/remove-superfluous-empty-lines
Remove superfluous empty lines
2 parents d3e8b00 + 40e6be4 commit 585e347

File tree

8 files changed

+0
-8
lines changed

8 files changed

+0
-8
lines changed

docs/build/reference/microsoft-extensions-to-c-and-cpp.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ The C compiler supports the following data declaration and definition features.
205205
// error C2059: syntax error: 'empty declaration'
206206
```
207207
208-
209208
## Intrinsic floating-point functions
210209
211210
Both the x86 C++ compiler and C compiler support inline generation of the `atan`, `atan2`, `cos`, `exp`, `log`, `log10`, `sin`, `sqrt`, and `tan` functions when **`/Oi`** is specified. These intrinsics don't conform to the standard, because they don't set the `errno` variable.

docs/c-runtime-library/reference/fsopen-wfsopen.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ The argument *`shflag`* is a constant expression consisting of one of the follow
9191
| `_SH_DENYRW` | Denies read and write access to the file. |
9292
| `_SH_DENYWR` | Denies write access to the file. |
9393

94-
9594
By default, this function's global state is scoped to the application. To change this behavior, see [Global state in the CRT](../global-state.md).
9695

9796
### Generic-text routine mappings

docs/code-quality/c26460.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ struct MyStruct
2424
void MemberFn2();
2525
};
2626

27-
2827
void Function1_Helper(const MyStruct&);
2928
void Function1(MyStruct& myStruct) // C26460, see comments below.
3029
{

docs/cpp/codesnippet/CPP/smart-pointers-modern-cpp_1.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ void UseRawPointer()
99
delete pSong;
1010
}
1111

12-
1312
void UseSmartPointer()
1413
{
1514
// Declare a smart pointer on stack and pass it the raw pointer.

docs/cpp/raw-pointers.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ void func_B(MyClass mc)
8181
mc.print(); // "Erika, 21"
8282
}
8383

84-
8584
int main()
8685
{
8786
// Use the * operator to declare a pointer type

docs/error-messages/compiler-warnings/c4834.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ This sample generates C4834, and shows four ways to fix it:
4040
[[nodiscard]]
4141
int square_of(int i) { return i * i; }
4242

43-
4443
int main()
4544
{
4645
square_of(42); // warning C4834: discarding return value of function with 'nodiscard' attribute

docs/parallel/concrt/codesnippet/CPP/walkthrough-creating-a-dataflow-agent_2.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ void run()
55
size_t negative_count = 0;
66
size_t positive_count = 0;
77

8-
98
// Write the counts to the message buffers.
109
send(_negatives, negative_count);
1110
send(_positives, positive_count);

docs/standard-library/range-adaptors.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,6 @@ The type of the elements to extract from the stream.
724724

725725
A [`basic_istream_view`](basic-istream-view-class.md).
726726

727-
728727
This range adaptor is equivalent to `ranges::basic_istream_view<Val, typename U::char_type, typename U::traits_type>(str)`, where `U` is the type of `str`.
729728

730729
### Example: `istream`

0 commit comments

Comments
 (0)