citra_qt: Fix remaining build errors

This commit is contained in:
Reg Tiangha
2024-11-07 16:19:37 +00:00
committed by OpenSauce04
parent 9ca3c5699f
commit 29a6f0e059
14 changed files with 27 additions and 15 deletions

View File

@@ -25,7 +25,7 @@ namespace Core {
class ARM_Interface : NonCopyable {
public:
explicit ARM_Interface(u32 id, std::shared_ptr<Core::Timing::Timer> timer)
: timer(timer), id(id){};
: timer(timer), id(id) {};
virtual ~ARM_Interface() {}
struct ThreadContext {

View File

@@ -251,7 +251,7 @@ public:
explicit Timing(std::size_t num_cores, u32 cpu_clock_percentage, s64 override_base_ticks = -1);
~Timing(){};
~Timing() {};
/**
* Returns the event_type identifier. if name is not unique, it will assert.

View File

@@ -281,7 +281,7 @@ void Module::Interface::GetLastResponseResult(Kernel::HLERequestContext& ctx) {
rb.Push(ResultSuccess);
}
Module::Module(Core::System& system) : system(system){};
Module::Module(Core::System& system) : system(system) {};
Module::~Module() = default;
void InstallInterfaces(Core::System& system) {

View File

@@ -200,7 +200,7 @@ public:
};
struct RequestHeader {
RequestHeader(std::string name, std::string value) : name(name), value(value){};
RequestHeader(std::string name, std::string value) : name(name), value(value) {};
std::string name;
std::string value;
@@ -230,10 +230,10 @@ public:
struct Param {
Param(const std::vector<u8>& value)
: name(value.begin(), value.end()), value(value.begin(), value.end()){};
Param(const std::string& name, const std::string& value) : name(name), value(value){};
: name(value.begin(), value.end()), value(value.begin(), value.end()) {};
Param(const std::string& name, const std::string& value) : name(name), value(value) {};
Param(const std::string& name, const std::vector<u8>& value)
: name(name), value(value.begin(), value.end()), is_binary(true){};
: name(name), value(value.begin(), value.end()), is_binary(true) {};
std::string name;
std::string value;
bool is_binary = false;