fix: I forgot to snake case
This commit is contained in:
parent
7d43a7f23b
commit
633870ed0b
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
namespace game::engine
|
namespace game::engine
|
||||||
{
|
{
|
||||||
FastCriticalSectionScopeRead::FastCriticalSectionScopeRead(native::FastCriticalSection* cs)
|
fast_critical_section_scope_read::fast_critical_section_scope_read(native::FastCriticalSection* cs)
|
||||||
{
|
{
|
||||||
this->cs_ = cs;
|
this->cs_ = cs;
|
||||||
if (this->cs_)
|
if (this->cs_)
|
||||||
@ -14,7 +14,7 @@ namespace game::engine
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
FastCriticalSectionScopeRead::~FastCriticalSectionScopeRead()
|
fast_critical_section_scope_read::~fast_critical_section_scope_read()
|
||||||
{
|
{
|
||||||
if (this->cs_)
|
if (this->cs_)
|
||||||
{
|
{
|
||||||
@ -22,7 +22,7 @@ namespace game::engine
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
FastCriticalSectionScopeWrite::FastCriticalSectionScopeWrite(native::FastCriticalSection* cs)
|
fast_critical_section_scope_write::fast_critical_section_scope_write(native::FastCriticalSection* cs)
|
||||||
{
|
{
|
||||||
this->cs_ = cs;
|
this->cs_ = cs;
|
||||||
if (this->cs_)
|
if (this->cs_)
|
||||||
@ -31,7 +31,7 @@ namespace game::engine
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
FastCriticalSectionScopeWrite::~FastCriticalSectionScopeWrite()
|
fast_critical_section_scope_write::~fast_critical_section_scope_write()
|
||||||
{
|
{
|
||||||
if (this->cs_)
|
if (this->cs_)
|
||||||
{
|
{
|
||||||
|
@ -2,21 +2,21 @@
|
|||||||
|
|
||||||
namespace game::engine
|
namespace game::engine
|
||||||
{
|
{
|
||||||
class FastCriticalSectionScopeRead
|
class fast_critical_section_scope_read
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
FastCriticalSectionScopeRead(native::FastCriticalSection* cs);
|
fast_critical_section_scope_read(native::FastCriticalSection* cs);
|
||||||
~FastCriticalSectionScopeRead();
|
~fast_critical_section_scope_read();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
native::FastCriticalSection* cs_;
|
native::FastCriticalSection* cs_;
|
||||||
};
|
};
|
||||||
|
|
||||||
class FastCriticalSectionScopeWrite
|
class fast_critical_section_scope_write
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
FastCriticalSectionScopeWrite(native::FastCriticalSection* cs);
|
fast_critical_section_scope_write(native::FastCriticalSection* cs);
|
||||||
~FastCriticalSectionScopeWrite();
|
~fast_critical_section_scope_write();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
native::FastCriticalSection* cs_;
|
native::FastCriticalSection* cs_;
|
||||||
|
Loading…
Reference in New Issue
Block a user