Skip to content

Commit 6ab3b80

Browse files
authored
Fixes -Wundef warning introduced with BUILD_SHARED_LIBS (#214)
1 parent f474f1e commit 6ab3b80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UVAtlas/inc/UVAtlas.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
#ifdef UVATLAS_EXPORT
4848
#define UVATLAS_API __declspec(dllexport)
49-
#elif UVATLAS_IMPORT
49+
#elif defined(UVATLAS_IMPORT)
5050
#define UVATLAS_API __declspec(dllimport)
5151
#else
5252
#define UVATLAS_API

0 commit comments

Comments
 (0)