mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
DeviceQualifier: small cleanup
This commit is contained in:
@ -87,15 +87,17 @@ std::string DeviceQualifier::ToString() const
|
|||||||
//
|
//
|
||||||
void DeviceQualifier::FromString(const std::string& str)
|
void DeviceQualifier::FromString(const std::string& str)
|
||||||
{
|
{
|
||||||
|
*this = {};
|
||||||
|
|
||||||
std::istringstream ss(str);
|
std::istringstream ss(str);
|
||||||
|
|
||||||
std::getline(ss, source = "", '/');
|
std::getline(ss, source, '/');
|
||||||
|
|
||||||
// silly
|
// silly
|
||||||
std::getline(ss, name, '/');
|
std::getline(ss, name, '/');
|
||||||
std::istringstream(name) >> (cid = -1);
|
std::istringstream(name) >> cid;
|
||||||
|
|
||||||
std::getline(ss, name = "");
|
std::getline(ss, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -18,9 +18,6 @@ namespace ciface
|
|||||||
{
|
{
|
||||||
namespace Core
|
namespace Core
|
||||||
{
|
{
|
||||||
// Forward declarations
|
|
||||||
class DeviceQualifier;
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Device
|
// Device
|
||||||
//
|
//
|
||||||
|
Reference in New Issue
Block a user