changed NO_DATA enum to NO_DATA_YET. Seems that this is an existing define on windows

This commit is contained in:
csoler 2020-05-08 14:49:25 +02:00
parent 59df44535a
commit 8e52f07621
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -128,13 +128,13 @@ public:
uint32_t subscription_flags ; // combination of GXS_EXTERNAL_CIRCLE_FLAGS_IN_ADMIN_LIST and GXS_EXTERNAL_CIRCLE_FLAGS_SUBSCRIBED
};
enum CircleEntryCacheStatus: uint8_t {
typedef enum CircleEntryCacheStatus: uint8_t {
UNKNOWN = 0x00, // Used to detect uninitialized memory
NO_DATA = 0x01, // Used in the constuctor
NO_DATA_YET = 0x01, // Used in the constuctor
LOADING = 0x02, // When the token request to load cache has been sent and no data is present
UPDATING = 0x03, // Starting from this level the cache entry can be used
CHECKING_MEMBERSHIP = 0x04, // Means we're actually looking into msgs to update membership status
UP_TO_DATE = 0x05, // Everything should be loaded here.
UP_TO_DATE = 0x05 // Everything should be loaded here.
};
class RsGxsCircleCache