Fixing tabs

Fixing leading tabs from previous commit.
This commit is contained in:
tomy2105 2016-03-15 14:29:26 +01:00
parent 7360d68eb7
commit 644291ce1b

26
tz.h
View File

@ -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;
} }