Skip to content

Commit

Permalink
Remove unnecessary DLLHIDDEN macro use
Browse files Browse the repository at this point in the history
  • Loading branch information
SamVanheer committed Jan 11, 2022
1 parent 4122fcd commit 19883a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ DLLEXPORT IBaseInterface* CreateInterface(const char* pName, int* pReturnCode)
return NULL;
}

//Local version of CreateInterface, marked hidden so that it is never merged with the version in other libraries
static DLLHIDDEN IBaseInterface* CreateInterfaceLocal(const char* pName, int* pReturnCode)
//Local version of CreateInterface, marked static so that it is never merged with the version in other libraries
static IBaseInterface* CreateInterfaceLocal(const char* pName, int* pReturnCode)
{
InterfaceReg* pCur;

Expand Down

0 comments on commit 19883a9

Please sign in to comment.