mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-03 05:59:31 +03:00
11 lines
270 B
C++
11 lines
270 B
C++
#pragma once
|
|
// Issue #981: test overriding allocation in a DLL that is compiled independent of mimalloc.
|
|
// This is imported by the `mimalloc-test-override` project.
|
|
|
|
#include <string>
|
|
|
|
class TestAllocInDll
|
|
{
|
|
public:
|
|
__declspec(dllexport) std::string GetString();
|
|
};
|