Skip to content

Commit 72f9c3f

Browse files
committed
1769497, incorporated author feedback.
1 parent f543e34 commit 72f9c3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/error-messages/tool-errors/missing-function-body-or-variable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1a88d809-b14f-46a4-97c4-3e48beb418f2
88

99
With just a function prototype, the compiler can continue without error, but the linker cannot resolve a call to an address because there is no function code or variable space reserved. You will not see this error until you create a call to the function that the linker must resolve.
1010

11-
## Example: Function call in main
11+
## Example: Call to an undefined function
1212

1313
The function call in main will cause LNK2019 because the prototype allows the compiler to think the function exists. The linker finds that it doesn't.
1414

0 commit comments

Comments
 (0)