Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 3 additions & 4 deletions CppCoreGuidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -4993,11 +4993,10 @@ There is a lot of code that is non-specific about ownership.

##### Example

class LegacyClass
class legacy_class
{
Foo* m_owningPtr;
Bar* m_observerPtr;
// ...
foo* m_owning;
bar* m_observer;
}

The only way to determine ownership may be to dig through the code to look for
Expand Down
6 changes: 3 additions & 3 deletions scripts/hunspell/isocpp.dic
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ Lakos
Lakos96
Lavavej
LCSD05
LegacyClass
legacy_class
lifecycle
*life-time
linearization
Expand All @@ -302,8 +302,8 @@ lvalues
m1
m2
m3
m_owningPtr;
m_observerPtr;
m_owning;
m_observer;
macros2
malloc
mallocfree
Expand Down