mirror of
https://github.com/HowardHinnant/date.git
synced 2025-01-14 09:47:57 +08:00
Fixing tabs
Fixing leading tabs from previous commit.
This commit is contained in:
parent
7360d68eb7
commit
644291ce1b
26
tz.h
26
tz.h
@ -208,7 +208,7 @@ public:
|
|||||||
Zone(Zone&& src)
|
Zone(Zone&& src)
|
||||||
:
|
:
|
||||||
name_(std::move(src.name_)),
|
name_(std::move(src.name_)),
|
||||||
zonelets_(std::move(src.zonelets_))
|
zonelets_(std::move(src.zonelets_))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
Zone& operator=(Zone&& src)
|
Zone& operator=(Zone&& src)
|
||||||
@ -582,28 +582,28 @@ struct TZ_DB
|
|||||||
#else // defined(_MSC_VER) || (_MSC_VER >= 1900)
|
#else // defined(_MSC_VER) || (_MSC_VER >= 1900)
|
||||||
TZ_DB(TZ_DB&& src)
|
TZ_DB(TZ_DB&& src)
|
||||||
:
|
:
|
||||||
version(std::move(src.version)),
|
version(std::move(src.version)),
|
||||||
zones(std::move(src.zones)),
|
zones(std::move(src.zones)),
|
||||||
links(std::move(src.links)),
|
links(std::move(src.links)),
|
||||||
leaps(std::move(src.leaps)),
|
leaps(std::move(src.leaps)),
|
||||||
rules(std::move(src.rules))
|
rules(std::move(src.rules))
|
||||||
#if TIMEZONE_MAPPING
|
#if TIMEZONE_MAPPING
|
||||||
,
|
,
|
||||||
mappings(std::move(src.mappings)),
|
mappings(std::move(src.mappings)),
|
||||||
native_zones(std::move(src.native_zones))
|
native_zones(std::move(src.native_zones))
|
||||||
#endif
|
#endif
|
||||||
{}
|
{}
|
||||||
|
|
||||||
TZ_DB& operator=(TZ_DB&& src)
|
TZ_DB& operator=(TZ_DB&& src)
|
||||||
{
|
{
|
||||||
version = std::move(src.version);
|
version = std::move(src.version);
|
||||||
zones = std::move(src.zones);
|
zones = std::move(src.zones);
|
||||||
links = std::move(src.links);
|
links = std::move(src.links);
|
||||||
leaps = std::move(src.leaps);
|
leaps = std::move(src.leaps);
|
||||||
rules = std::move(src.rules);
|
rules = std::move(src.rules);
|
||||||
#if TIMEZONE_MAPPING
|
#if TIMEZONE_MAPPING
|
||||||
mappings = std::move(src.mappings);
|
mappings = std::move(src.mappings);
|
||||||
native_zones = std::move(src.native_zones);
|
native_zones = std::move(src.native_zones);
|
||||||
#endif
|
#endif
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user