SPU TSX: implement Accurate PUTLLC option

Allow spurious PUTLLC failure if disabled (default).
This commit is contained in:
Nekotekina 2019-05-25 22:23:23 +03:00
parent b839cc9d5b
commit 71b71537a0
3 changed files with 12 additions and 7 deletions

View file

@ -133,7 +133,7 @@ namespace cfg
return m_value;
}
bool get() const
const bool& get() const
{
return m_value;
}
@ -184,7 +184,7 @@ namespace cfg
return m_value;
}
T get() const
const T& get() const
{
return m_value;
}
@ -247,7 +247,7 @@ namespace cfg
return m_value;
}
int_type get() const
const int_type& get() const
{
return m_value;
}
@ -347,7 +347,7 @@ namespace cfg
{
}
std::set<std::string> get_set() const
const std::set<std::string>& get_set() const
{
return m_set;
}
@ -382,7 +382,7 @@ namespace cfg
{
}
std::map<std::string, logs::level> get_map() const
const std::map<std::string, logs::level>& get_map() const
{
return m_map;
}