Skip to content

Commit a13be5b

Browse files
chkuang-ga-maurice
authored andcommitted
Change forward declaration for SignInResult to struct
SignInResult is declared as a struct in user.h but forward declared here as a class. This did not cause error in our build but is causing compiler error for user. Fixed #120 PiperOrigin-RevId: 329958702
1 parent 0c728c1 commit a13be5b

File tree

1 file changed

+1
-1
lines changed
  • auth/src/include/firebase

1 file changed

+1
-1
lines changed

auth/src/include/firebase/auth.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class PhoneAuthProvider;
4747
struct AuthCompletionHandle;
4848
class FederatedAuthProvider;
4949
class FederatedOAuthProvider;
50-
class SignInResult;
50+
struct SignInResult;
5151

5252
/// @brief Firebase authentication object.
5353
///

0 commit comments

Comments
 (0)