Skip to content

Commit

Permalink
BUGFIX: Fixing export symbol for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanky committed Dec 23, 2015
1 parent 70dc89c commit d251e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lua/arrayfire/export.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if defined(_WIN32) || defined(_MSC_VER)
#define __EXPORT__ extern "C" __declspec(dllimport)
#define __EXPORT__ extern "C" __declspec(dllexport)
#else
#define __EXPORT__ extern "C" __attribute__((visibility("default")))
#endif

0 comments on commit d251e72

Please sign in to comment.