diff options
| author | 2018-07-23 21:23:27 -0700 | |
|---|---|---|
| committer | 2018-07-23 21:23:27 -0700 | |
| commit | 2f029577c7a5bdab882cc711dd1939cf13ec152b (patch) | |
| tree | 3533a83db1ac855b58340aea648e013242c01fad /src/core/hle/kernel | |
| parent | Merge pull request #785 from lioncash/fs (diff) | |
| parent | hle_ipc: Make constructors explicit where applicable (diff) | |
| download | yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar.gz yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar.xz yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.zip | |
Merge pull request #793 from lioncash/priv
ipc_helpers: Make member variables of ResponseBuilder private
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/hle_ipc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h index 01b805df8..84727f748 100644 --- a/src/core/hle/kernel/hle_ipc.h +++ b/src/core/hle/kernel/hle_ipc.h | |||
| @@ -91,7 +91,7 @@ protected: | |||
| 91 | */ | 91 | */ |
| 92 | class HLERequestContext { | 92 | class HLERequestContext { |
| 93 | public: | 93 | public: |
| 94 | HLERequestContext(SharedPtr<Kernel::ServerSession> session); | 94 | explicit HLERequestContext(SharedPtr<ServerSession> session); |
| 95 | ~HLERequestContext(); | 95 | ~HLERequestContext(); |
| 96 | 96 | ||
| 97 | /// Returns a pointer to the IPC command buffer for this request. | 97 | /// Returns a pointer to the IPC command buffer for this request. |