mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-31 14:58:22 -04:00
ncm: hot take, uninitialized data bad
This commit is contained in:
parent
dfcb5005d2
commit
a89c5dd5d7
18 changed files with 36 additions and 36 deletions
|
@ -25,7 +25,7 @@ namespace ams::lr {
|
|||
private:
|
||||
sf::SharedPointer<ILocationResolver> m_interface;
|
||||
public:
|
||||
LocationResolver() { /* ... */ }
|
||||
LocationResolver() : m_interface(nullptr) { /* ... */ }
|
||||
explicit LocationResolver(sf::SharedPointer<ILocationResolver> intf) : m_interface(intf) { /* ... */ }
|
||||
|
||||
LocationResolver(LocationResolver &&rhs) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue