diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-10 21:49:49 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 5b531fa495e711904e3f8f9470b68ca17168f1cc (patch) | |
tree | 1282fe6c807f19536e9c20e9bc3da4a16595a2d1 /asl | |
parent | af164f9af26d0c64d2e8210039b99e4f191acdaa (diff) |
Upgrade Bazel to 8.0.0
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);
}
}
};
|