Make ScriptTimePoint::Get const correct
This commit is contained in:
@@ -43,7 +43,7 @@ namespace AZ
|
||||
return AZStd::string::format("Time %llu", m_timePoint.time_since_epoch().count());
|
||||
}
|
||||
|
||||
const AZStd::chrono::system_clock::time_point& Get() { return m_timePoint; }
|
||||
const AZStd::chrono::system_clock::time_point& Get() const { return m_timePoint; }
|
||||
|
||||
// Returns the time point in seconds
|
||||
double GetSeconds() const
|
||||
|
||||
Reference in New Issue
Block a user