Some spring cleaning

This commit is contained in:
Victor Olin 2023-03-19 15:16:41 +01:00
parent 78ccade17d
commit 91f241dba2
6 changed files with 26 additions and 26 deletions

View file

@ -9,23 +9,23 @@
namespace GC
{
GCEventType GCEvent::getType()
GCEventType GCEvent::get_type()
{
return m_type;
}
std::time_t GCEvent::getTimeStamp()
std::time_t GCEvent::get_time_stamp()
{
return m_timestamp;
}
Chunk *GCEvent::getChunk()
Chunk *GCEvent::get_chunk()
{
return m_chunk;
}
// Try to remove inline
const char *GCEvent::TypeToString()
const char *GCEvent::type_to_string()
{
switch (m_type)
{