Skip to content

Commit bb8854d

Browse files
gjrfytnColin Robertson
authored andcommitted
Keywords markup correction (MicrosoftDocs#391)
1 parent ed2544e commit bb8854d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4114.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.workload: ["cplusplus"]
1515
# Compiler Warning (level 1) C4114
1616
same type qualifier used more than once
1717

18-
A type declaration or definition uses a type qualifier (**const**, `volatile`, **signed**, or `unsigned`) more than once. This causes a warning with Microsoft extensions (/Ze) and an error under ANSI compatibility (/Za).
18+
A type declaration or definition uses a type qualifier (**const**, **volatile**, **signed**, or **unsigned**) more than once. This causes a warning with Microsoft extensions (/Ze) and an error under ANSI compatibility (/Za).
1919

2020
The following sample generates C4114:
2121

@@ -32,4 +32,4 @@ volatile volatile int i; // C4114
3232
// compile with: /W1 /c
3333
static const int const * ii; // C4114
3434
static const int * const iii; // OK
35-
```
35+
```

0 commit comments

Comments
 (0)