Skip to content

Commit

Permalink
fix issue 29
Browse files Browse the repository at this point in the history
- only failed compilation for win32 packaging due to C4668 since 4.20. Wrapping defined fixes this warning.
  • Loading branch information
getnamo committed Dec 24, 2018
1 parent c640c78 commit 5acbc9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Source/ZipUtility/Private/ZipFileFunctionLibrary.cpp
Expand Up @@ -47,7 +47,8 @@ namespace{

FString DLLPath()
{
#if _WIN64

#if defined(_WIN64)

FString PlatformString = FString(TEXT("Win64"));
#else
Expand Down
2 changes: 1 addition & 1 deletion ZipUtility.uplugin
@@ -1,7 +1,7 @@
{
"FileVersion": 3,
"Version": 2,
"VersionName": "0.5.1",
"VersionName": "0.5.2",
"FriendlyName": "ZipUtility",
"Description": "",
"Category": "Utility",
Expand Down

0 comments on commit 5acbc9e

Please sign in to comment.