We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f683c9 commit 83f297eCopy full SHA for 83f297e
auth/src/data.h
@@ -90,7 +90,6 @@ struct AuthData {
90
91
app = nullptr;
92
auth = nullptr;
93
- current_user = nullptr;
94
auth_impl = nullptr;
95
user_impl = nullptr;
96
listener_impl = nullptr;
auth/src/include/firebase/auth/user.h
@@ -439,7 +439,7 @@ class User : public UserInfoInterface {
439
private:
440
friend struct AuthData;
441
// Only exists in AuthData. Access via @ref Auth::CurrentUser().
442
- User(AuthData* auth_data) : auth_data_(auth_data) {}
+ explicit User(AuthData* auth_data) : auth_data_(auth_data) {}
443
444
#if defined(INTERNAL_EXPERIMENTAL)
445
// Doxygen should not make docs for this function.
0 commit comments