Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/cpp/function-template-instantiation.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ When a function template is first called for each type, the compiler creates an

Function templates can be explicitly instantiated by declaring the template with a particular type as an argument. For example, the following code is allowed:

```
```cpp
// function_template_instantiation.cpp
template<class T> void f(T) { }

Expand All @@ -58,4 +58,4 @@ int main()
```

## See Also
[Function Templates](../cpp/function-templates.md)
[Function Templates](../cpp/function-templates.md)