mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
Fix some clang warnings (nw)
This commit is contained in:
parent
f7f5bedbbe
commit
96a0ad2d59
2
3rdparty/asio/include/asio/buffer.hpp
vendored
2
3rdparty/asio/include/asio/buffer.hpp
vendored
@ -706,7 +706,7 @@ public:
|
|||||||
|
|
||||||
void operator()()
|
void operator()()
|
||||||
{
|
{
|
||||||
*iter_;
|
(void)*iter_;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -205,7 +205,7 @@ private:
|
|||||||
{
|
{
|
||||||
std::istringstream stream(m_text);
|
std::istringstream stream(m_text);
|
||||||
stream.imbue(f_portable_locale);
|
stream.imbue(f_portable_locale);
|
||||||
m_text.c_str();
|
(void)m_text.c_str();
|
||||||
if (m_text[0] == '$')
|
if (m_text[0] == '$')
|
||||||
{
|
{
|
||||||
stream.get();
|
stream.get();
|
||||||
@ -242,7 +242,7 @@ private:
|
|||||||
{
|
{
|
||||||
std::istringstream stream(m_text);
|
std::istringstream stream(m_text);
|
||||||
stream.imbue(f_portable_locale);
|
stream.imbue(f_portable_locale);
|
||||||
m_text.c_str();
|
(void)m_text.c_str();
|
||||||
if (m_text[0] == '$')
|
if (m_text[0] == '$')
|
||||||
{
|
{
|
||||||
stream.get();
|
stream.get();
|
||||||
@ -302,7 +302,7 @@ private:
|
|||||||
{
|
{
|
||||||
std::istringstream stream(m_text);
|
std::istringstream stream(m_text);
|
||||||
stream.imbue(f_portable_locale);
|
stream.imbue(f_portable_locale);
|
||||||
m_text.c_str();
|
(void)m_text.c_str();
|
||||||
if (m_text[0] == '$')
|
if (m_text[0] == '$')
|
||||||
{
|
{
|
||||||
stream.get();
|
stream.get();
|
||||||
|
Loading…
Reference in New Issue
Block a user