Make constructors explicit

This commit is contained in:
Alexander Bock
2025-02-05 23:22:32 +01:00
parent 4950c8d5bd
commit 096363fd06
212 changed files with 261 additions and 252 deletions

View File

@@ -85,18 +85,6 @@ bool TimeFrameInterval::isActive(const Time& time) const {
return true;
}
TimeFrameInterval::TimeFrameInterval()
: _hasStart(HasStartInfo, false)
, _start(StartInfo, 0, 0, 1E9)
, _hasEnd(HasEndInfo, false)
, _end(EndInfo, 0, 0, 1E9)
{
addProperty(_hasStart);
addProperty(_start);
addProperty(_hasEnd);
addProperty(_end);
}
TimeFrameInterval::TimeFrameInterval(const ghoul::Dictionary& dictionary)
: _hasStart(HasStartInfo, false)
, _start(StartInfo, 0, 0, 1E9)