Core/Bitset: Fix value constructor

Former-commit-id: 44cfe386a985a4b449527a9fab3d5da49e30117c
This commit is contained in:
Lynix
2016-05-06 19:15:15 +02:00
parent 190462fd31
commit e34c94343f
2 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ namespace Nz
Bitset(const char* bits, unsigned int bitCount);
Bitset(const Bitset& bitset) = default;
explicit Bitset(const String& bits);
template<typename T> explicit Bitset(T value);
template<typename T> Bitset(T value);
Bitset(Bitset&& bitset) noexcept = default;
~Bitset() noexcept = default;