Skip to content

Commit

Permalink
Remove DLL_IMPORT macro
Browse files Browse the repository at this point in the history
This macro is unused.
  • Loading branch information
mwswartwout committed Mar 8, 2023
1 parent 8a12695 commit e4326be
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/lib/support/DLLUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,13 @@
#pragma once

#if defined _WIN32 || defined __CYGWIN__
#define DLL_IMPORT __declspec(dllimport)
#define DLL_EXPORT __declspec(dllexport)
#define DLL_LOCAL
#else
#if __GNUC__ >= 4
#define DLL_IMPORT __attribute__((visibility("default")))
#define DLL_EXPORT __attribute__((visibility("default")))
#define DLL_LOCAL __attribute__((visibility("hidden")))
#else
#define DLL_IMPORT
#define DLL_EXPORT
#define DLL_LOCAL
#endif
Expand Down

0 comments on commit e4326be

Please sign in to comment.