Skip to content

Commit

Permalink
Merge pull request #20 from configcat/blueprint-enums-marked-as-class
Browse files Browse the repository at this point in the history
Fixed 5.1 build error - blueprint enums need to be marked as class
  • Loading branch information
pasotee authored May 24, 2024
2 parents 2fb521b + f95d0c5 commit 8851fd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ConfigCat.uplugin
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"FileVersion": 3,
"VersionName": "2.0.0",
"VersionName": "2.0.1",
"EngineVersion": "5.3",
"FriendlyName": "ConfigCat",
"Description": "ConfigCat is a hosted service for feature flag and configuration management. It lets you decouple feature releases from code deployments.",
Expand Down
2 changes: 1 addition & 1 deletion Source/ConfigCatWrappers/Public/ConfigCatSettingsWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class UConfigCatTargetingRuleWrapper;
class UConfigCatValueWrapper;

UENUM(BlueprintType)
enum EConfigCatSettingTypeWrapper : uint8
enum class EConfigCatSettingTypeWrapper : uint8
{
Bool = 0,
String = 1,
Expand Down

0 comments on commit 8851fd1

Please sign in to comment.