Skip to content

Commit 8851fd1

Browse files
authored
Merge pull request #20 from configcat/blueprint-enums-marked-as-class
Fixed 5.1 build error - blueprint enums need to be marked as class
2 parents 2fb521b + f95d0c5 commit 8851fd1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ConfigCat.uplugin

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"FileVersion": 3,
3-
"VersionName": "2.0.0",
3+
"VersionName": "2.0.1",
44
"EngineVersion": "5.3",
55
"FriendlyName": "ConfigCat",
66
"Description": "ConfigCat is a hosted service for feature flag and configuration management. It lets you decouple feature releases from code deployments.",

Source/ConfigCatWrappers/Public/ConfigCatSettingsWrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class UConfigCatTargetingRuleWrapper;
1313
class UConfigCatValueWrapper;
1414

1515
UENUM(BlueprintType)
16-
enum EConfigCatSettingTypeWrapper : uint8
16+
enum class EConfigCatSettingTypeWrapper : uint8
1717
{
1818
Bool = 0,
1919
String = 1,

0 commit comments

Comments
 (0)