Skip to content

Commit edebbfa

Browse files
authored
Update compiler-warning-level-2-c4150.md
1 parent 332074a commit edebbfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/error-messages/compiler-warnings/compiler-warning-level-2-c4150.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void NoDestruct( IncClass* pIncClass )
3535
}
3636
```
3737

38-
C4150 can also occur when the class is defined after the destructor call in the same translation unit. In the following example `IncClass` is declared before it is used, but not defined until after:
38+
C4150 can also occur when the class is defined after the destructor call in the same translation unit. In the following example `IncClass` is declared before being used, but not defined until after:
3939

4040
```cpp
4141
// C4150.cpp

0 commit comments

Comments
 (0)