1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:57:47 +00:00

LibJS: Remove pointless 'explicit' from a couple of constructors

This commit is contained in:
Linus Groh 2021-07-21 23:45:44 +01:00
parent c65424d806
commit bece2093f2
5 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ public:
// Needs to store values in the range -8.64 * 10^13 to 8.64 * 10^13
using OffsetType = double;
explicit TimeZone(String identifier, Object& prototype);
TimeZone(String identifier, Object& prototype);
virtual ~TimeZone() override = default;
String const& identifier() const { return m_identifier; }