Fix partial rename of s/EXPORT/JEMALLOC_EXPORT/g.

This commit is contained in:
Jason Evans 2012-05-02 03:02:53 -07:00
parent 9a7944f8ab
commit 1b523da21c

View File

@ -112,9 +112,9 @@
#elif _MSC_VER #elif _MSC_VER
# define JEMALLOC_ATTR(s) # define JEMALLOC_ATTR(s)
# ifdef DLLEXPORT # ifdef DLLEXPORT
# define EXPORT __declspec(dllexport) # define JEMALLOC_EXPORT __declspec(dllexport)
# else # else
# define EXPORT __declspec(dllimport) # define JEMALLOC_EXPORT __declspec(dllimport)
# endif # endif
# define JEMALLOC_ALIGNED(s) __declspec(align(s)) # define JEMALLOC_ALIGNED(s) __declspec(align(s))
# define JEMALLOC_SECTION(s) __declspec(allocate(s)) # define JEMALLOC_SECTION(s) __declspec(allocate(s))