Skip to content

Commit 1b3ff86

Browse files
authored
Fix RemoteConfigError enum values (#1303)
1 parent 19efa52 commit 1b3ff86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

remote_config/src/include/firebase/remote_config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ enum FetchFailureReason {
6868

6969
/// @brief Describes the error codes returned by Remote Config.
7070
enum RemoteConfigError {
71-
// No error.
72-
kRemoteConfigErrorNone = 0,
7371
// Unimplemented error found.
7472
kRemoteConfigErrorUnimplemented = -1,
73+
// No error.
74+
kRemoteConfigErrorNone = 0,
7575
// Unable to make a connection to the Remote Config backend.
7676
kRemoteConfigErrorConfigUpdateStreamError,
7777
// The ConfigUpdate message was unparsable.

0 commit comments

Comments
 (0)