Skip to content

Remove superfluous empty lines #4805

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/build/reference/microsoft-extensions-to-c-and-cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ The C compiler supports the following data declaration and definition features.
// error C2059: syntax error: 'empty declaration'
```


## Intrinsic floating-point functions

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.
Expand Down
1 change: 0 additions & 1 deletion docs/c-runtime-library/reference/fsopen-wfsopen.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ The argument *`shflag`* is a constant expression consisting of one of the follow
| `_SH_DENYRW` | Denies read and write access to the file. |
| `_SH_DENYWR` | Denies write access to the file. |


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).

### Generic-text routine mappings
Expand Down
1 change: 0 additions & 1 deletion docs/code-quality/c26460.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ struct MyStruct
void MemberFn2();
};


void Function1_Helper(const MyStruct&);
void Function1(MyStruct& myStruct) // C26460, see comments below.
{
Expand Down
1 change: 0 additions & 1 deletion docs/cpp/codesnippet/CPP/smart-pointers-modern-cpp_1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ void UseRawPointer()
delete pSong;
}


void UseSmartPointer()
{
// Declare a smart pointer on stack and pass it the raw pointer.
Expand Down
1 change: 0 additions & 1 deletion docs/cpp/raw-pointers.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ void func_B(MyClass mc)
mc.print(); // "Erika, 21"
}


int main()
{
// Use the * operator to declare a pointer type
Expand Down
1 change: 0 additions & 1 deletion docs/error-messages/compiler-warnings/c4834.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ This sample generates C4834, and shows four ways to fix it:
[[nodiscard]]
int square_of(int i) { return i * i; }


int main()
{
square_of(42); // warning C4834: discarding return value of function with 'nodiscard' attribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ void run()
size_t negative_count = 0;
size_t positive_count = 0;


// Write the counts to the message buffers.
send(_negatives, negative_count);
send(_positives, positive_count);
Expand Down
1 change: 0 additions & 1 deletion docs/standard-library/range-adaptors.md
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,6 @@ The type of the elements to extract from the stream.

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


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`.

### Example: `istream`
Expand Down