diff options
Diffstat (limited to 'asl')
-rw-r--r-- | asl/buffer.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/buffer.hpp b/asl/buffer.hpp index b45d5d8..da931cb 100644 --- a/asl/buffer.hpp +++ b/asl/buffer.hpp @@ -116,7 +116,7 @@ public: {
return is_on_heap(load_size_encoded())
? m_data
- : reinterpret_cast<const T*>(this);
+ : reinterpret_cast<T*>(this);
}
}
};
|