diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2016-03-02 12:49:30 +0000 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-03-02 14:25:06 +0000 |
commit | 48366b1071a7e6ee367435b78845b429c0c9c31f (patch) | |
tree | ea8830afe35efaed11cc820c83ab798fe5a9af36 /src/citra/config.h | |
parent | ba2a54a9dd6e5a263c5e6886e55b3bc55b95b4ab (diff) |
Config: Use unique_ptr instead of raw pointer
Diffstat (limited to 'src/citra/config.h')
-rw-r--r-- | src/citra/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/citra/config.h b/src/citra/config.h index d87ef7883..52a478146 100644 --- a/src/citra/config.h +++ b/src/citra/config.h @@ -4,19 +4,19 @@ #pragma once +#include <memory> #include <string> -class INIReader; +#include <inih/cpp/INIReader.h> class Config { - INIReader* sdl2_config; + std::unique_ptr<INIReader> sdl2_config; std::string sdl2_config_loc; - bool LoadINI(INIReader* config, const char* location, const std::string& default_contents="", bool retry=true); + bool LoadINI(const std::string& default_contents="", bool retry=true); void ReadValues(); public: Config(); - ~Config(); void Reload(); }; |