Skip to content

Commit c5243ce

Browse files
committed
Fix #elif and add linebreaks.
1 parent abb7971 commit c5243ce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/asar/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,4 @@ if (ASAR_GEN_LIB)
270270
set_asar_shared_properties(asar-static "D" FALSE)
271271

272272
# there's no need to set the PDB name since static libraries don't produce PDBs
273-
endif()
273+
endif()

src/asar/interface-lib.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#elif defined(_WIN32)
2020
#ifdef ASAR_SHARED
2121
#define EXPORT extern "C" __declspec(dllexport)
22-
#elif ASAR_STATIC
22+
#elif defined(ASAR_STATIC)
2323
#define EXPORT extern "C"
2424
#endif
2525
#else

src/asar/interface-lib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,4 @@ extern "C" {
184184
#ifdef __cplusplus
185185
}
186186
#endif
187-
#endif
187+
#endif

0 commit comments

Comments
 (0)