Skip to content

Commit 8297600

Browse files
authored
Remove empty lines at start and end of code block
1 parent 05bdb64 commit 8297600

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

docs/code-quality/c6393.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Code analysis name: `LEAP_YEAR_INVALID_DATE_KEYED_LOOKUP`
2626
The following code creates a lookup table for the day of the year, assuming 365 days per year. However, this doesn't work if the year is a leap year:
2727

2828
```cpp
29-
3029
#include <vector>
3130

3231
void foo(int year)

docs/cpp/functions-cpp.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ Optional parts of a function declaration are:
7777
```cpp
7878
//Declare printf with C linkage.
7979
extern "C" int printf( const char *fmt, ... );
80-
8180
```
8281

8382
For more information, see [Translation units and linkage](../cpp/program-and-linkage-cpp.md).

docs/porting/visual-cpp-what-s-new-2003-through-2015.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ Although these differences can affect your source code or other build artifacts,
226226
```cpp
227227
error C3688: invalid literal suffix '_x'; literal operator or literal operator template 'operator ""_x' not found
228228
note: Did you forget a space between the string literal and the prefix of the following string literal?
229-
230229
```
231230

232231
To fix this problem, add a space between the string literal and the macro.

0 commit comments

Comments
 (0)