Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add missing semis after classes #38931

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/guides/cpp-style-guide.md
Expand Up @@ -179,7 +179,7 @@ For plain C-like structs snake_case can be used.
```cpp
struct foo_bar {
int name;
}
};
```

### Space after `template`
Expand All @@ -188,7 +188,7 @@ struct foo_bar {
template <typename T>
class FancyContainer {
...
}
};
```

## Memory management
Expand Down