mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-05 06:22:45 +01:00
Merge pull request #3711 from lioncash/cast
memory/slab_heap: Make use of static_cast over reinterpret_cast
This commit is contained in:
commit
90ddb13372
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
void Free(void* obj) {
|
void Free(void* obj) {
|
||||||
Node* node = reinterpret_cast<Node*>(obj);
|
Node* node = static_cast<Node*>(obj);
|
||||||
|
|
||||||
Node* cur_head = head.load();
|
Node* cur_head = head.load();
|
||||||
do {
|
do {
|
||||||
|
@ -145,7 +145,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
T* Allocate() {
|
T* Allocate() {
|
||||||
T* obj = reinterpret_cast<T*>(AllocateImpl());
|
T* obj = static_cast<T*>(AllocateImpl());
|
||||||
if (obj != nullptr) {
|
if (obj != nullptr) {
|
||||||
new (obj) T();
|
new (obj) T();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue