Skip to content
Closed
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
doc: add missing semis after classes
Signed-off-by: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
RaisinTen committed Jun 4, 2021
commit 94d8a77ce093d7a7c997e7342afe446fc42a5c9f
4 changes: 2 additions & 2 deletions doc/guides/cpp-style-guide.md
Original file line number Diff line number Diff line change
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