diff options
| author | 2022-07-25 17:08:20 +0200 | |
|---|---|---|
| committer | 2022-07-25 21:59:31 +0200 | |
| commit | 6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b (patch) | |
| tree | b70962e3698930c5b06d777bd912caa89a912391 /src/network/verify_user.h | |
| parent | yuzu_cmd: Fix compilation (diff) | |
| download | yuzu-6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b.tar.gz yuzu-6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b.tar.xz yuzu-6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b.zip | |
network, yuzu: Improve variable naming and style consistency
Diffstat (limited to '')
| -rw-r--r-- | src/network/verify_user.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/verify_user.h b/src/network/verify_user.h index 5c3852d4a..ddae67e99 100644 --- a/src/network/verify_user.h +++ b/src/network/verify_user.h | |||
| @@ -25,11 +25,11 @@ public: | |||
| 25 | 25 | ||
| 26 | /** | 26 | /** |
| 27 | * Verifies the given token and loads the information into a UserData struct. | 27 | * Verifies the given token and loads the information into a UserData struct. |
| 28 | * @param verify_UID A GUID that may be used for verification. | 28 | * @param verify_uid A GUID that may be used for verification. |
| 29 | * @param token A token that contains user data and verification data. The format and content is | 29 | * @param token A token that contains user data and verification data. The format and content is |
| 30 | * decided by backends. | 30 | * decided by backends. |
| 31 | */ | 31 | */ |
| 32 | virtual UserData LoadUserData(const std::string& verify_UID, const std::string& token) = 0; | 32 | virtual UserData LoadUserData(const std::string& verify_uid, const std::string& token) = 0; |
| 33 | }; | 33 | }; |
| 34 | 34 | ||
| 35 | /** | 35 | /** |
| @@ -40,7 +40,7 @@ class NullBackend final : public Backend { | |||
| 40 | public: | 40 | public: |
| 41 | ~NullBackend(); | 41 | ~NullBackend(); |
| 42 | 42 | ||
| 43 | UserData LoadUserData(const std::string& verify_UID, const std::string& token) override; | 43 | UserData LoadUserData(const std::string& verify_uid, const std::string& token) override; |
| 44 | }; | 44 | }; |
| 45 | 45 | ||
| 46 | } // namespace Network::VerifyUser | 46 | } // namespace Network::VerifyUser |