Skip to content

Commit 7fc962f

Browse files
authored
fix: prefix server zone constants (#521)
1 parent e3d2640 commit 7fc962f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Sources/Amplitude/Public/AMPServerZone.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ typedef NS_ENUM(NSInteger, AMPServerZone);
3333
#ifndef AMPServerZone_h
3434
#define AMPServerZone_h
3535
typedef NS_ENUM(NSInteger, AMPServerZone) {
36-
US,
37-
EU
36+
AMPServerZoneUS = 0,
37+
AMPServerZoneEU = 1,
3838
};
39+
40+
static const AMPServerZone US = AMPServerZoneUS;
41+
static const AMPServerZone EU = AMPServerZoneEU;
3942
#endif

0 commit comments

Comments
 (0)