Fix compilation

Former-commit-id: d5ac6bb73615f7c9b068c1de2037dfeddc5c1b45
This commit is contained in:
Lynix
2016-03-02 16:53:20 +01:00
parent ad55ff159b
commit 192fccc634
6 changed files with 6 additions and 6 deletions

View File

@@ -913,7 +913,7 @@ namespace Nz
template<typename Block, class Allocator>
template<bool BadCall>
void* Bitset::Bit::operator&() const
void* Bitset<Block, Allocator>::Bit::operator&() const
{
// The template is necessary to make it fail only when used
static_assert(!BadCall, "It is impossible to take the address of a bit in a bitset");

View File

@@ -215,7 +215,7 @@ namespace Nz
*/
template<typename T>
T* SparsePtr::operator->() const
T* SparsePtr<T>::operator->() const
{
return reinterpret_cast<T*>(m_ptr);
}