diff options
| author | 2023-07-01 22:03:21 -0700 | |
|---|---|---|
| committer | 2023-07-01 22:03:21 -0700 | |
| commit | 644c3ce609c7a327866ae0107bd7772e34e8ecb9 (patch) | |
| tree | efcbfdff533e6127fb7edf1593486101e0e52579 /src/core | |
| parent | ...actually add the SecureTransport backend to Git. (diff) | |
| download | yuzu-644c3ce609c7a327866ae0107bd7772e34e8ecb9.tar.gz yuzu-644c3ce609c7a327866ae0107bd7772e34e8ecb9.tar.xz yuzu-644c3ce609c7a327866ae0107bd7772e34e8ecb9.zip | |
Rename variables to avoid -Wshadow warnings under GCC
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/ssl/ssl.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/ssl/ssl.cpp b/src/core/hle/service/ssl/ssl.cpp index 0919be55f..9c96f9763 100644 --- a/src/core/hle/service/ssl/ssl.cpp +++ b/src/core/hle/service/ssl/ssl.cpp | |||
| @@ -60,11 +60,11 @@ struct SslContextSharedData { | |||
| 60 | 60 | ||
| 61 | class ISslConnection final : public ServiceFramework<ISslConnection> { | 61 | class ISslConnection final : public ServiceFramework<ISslConnection> { |
| 62 | public: | 62 | public: |
| 63 | explicit ISslConnection(Core::System& system_, SslVersion version, | 63 | explicit ISslConnection(Core::System& system_in, SslVersion ssl_version_in, |
| 64 | std::shared_ptr<SslContextSharedData>& shared_data, | 64 | std::shared_ptr<SslContextSharedData>& shared_data_in, |
| 65 | std::unique_ptr<SSLConnectionBackend>&& backend) | 65 | std::unique_ptr<SSLConnectionBackend>&& backend_in) |
| 66 | : ServiceFramework{system_, "ISslConnection"}, ssl_version{version}, | 66 | : ServiceFramework{system_in, "ISslConnection"}, ssl_version{ssl_version_in}, |
| 67 | shared_data{shared_data}, backend{std::move(backend)} { | 67 | shared_data{shared_data_in}, backend{std::move(backend_in)} { |
| 68 | // clang-format off | 68 | // clang-format off |
| 69 | static const FunctionInfo functions[] = { | 69 | static const FunctionInfo functions[] = { |
| 70 | {0, &ISslConnection::SetSocketDescriptor, "SetSocketDescriptor"}, | 70 | {0, &ISslConnection::SetSocketDescriptor, "SetSocketDescriptor"}, |