mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-24 03:36:52 -04:00
strat: use m_ for member variables
This commit is contained in:
parent
ce28591ab2
commit
a595c232b9
425 changed files with 8531 additions and 8484 deletions
|
@ -25,10 +25,10 @@ namespace ams::erpt::srv {
|
|||
|
||||
class Context : public Allocator, public util::IntrusiveListBaseNode<Context> {
|
||||
private:
|
||||
const CategoryId category;
|
||||
const u32 max_record_count;
|
||||
u32 record_count;
|
||||
util::IntrusiveListBaseTraits<ContextRecord>::ListType record_list;
|
||||
const CategoryId m_category;
|
||||
const u32 m_max_record_count;
|
||||
u32 m_record_count;
|
||||
util::IntrusiveListBaseTraits<ContextRecord>::ListType m_record_list;
|
||||
public:
|
||||
Context(CategoryId cat, u32 max_records);
|
||||
~Context();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue