mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
pointer cast
This commit is contained in:
parent
ae0873bc77
commit
625bb1d7ee
@ -49,9 +49,9 @@ public:
|
|||||||
|
|
||||||
void deallocate(pointer __p, size_type) {
|
void deallocate(pointer __p, size_type) {
|
||||||
#ifdef HAVE_MM_MALLOC_H
|
#ifdef HAVE_MM_MALLOC_H
|
||||||
_mm_free(__p);
|
_mm_free((void *)__p);
|
||||||
#else
|
#else
|
||||||
free(__p);
|
free((void *)__p);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
void construct(pointer __p, const _Tp& __val) { };
|
void construct(pointer __p, const _Tp& __val) { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user