mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
13 lines
190 B
Plaintext
13 lines
190 B
Plaintext
#ifndef MSL_CPP_NEW_H
|
|
#define MSL_CPP_NEW_H
|
|
#include <stddef.h>
|
|
#ifdef __cplusplus
|
|
|
|
inline void* operator new(size_t size, void* ptr) {
|
|
#pragma unused(size)
|
|
return ptr;
|
|
}
|
|
|
|
#endif
|
|
#endif
|