From 398c29c5cf1ec36a2c33bae21ded407d14407756 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 26 Jan 2018 23:14:41 +1100 Subject: Work around glibstdc++ allocator not dealing with T & being the same thing as T const & because T is already const-qualified. Note that this makes the code less safe because modifying elements of the list can cause the addresses of the data to change. (nw) --- src/frontend/mame/pluginopts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/mame/pluginopts.h b/src/frontend/mame/pluginopts.h index f306c925ce2..27e57104293 100644 --- a/src/frontend/mame/pluginopts.h +++ b/src/frontend/mame/pluginopts.h @@ -27,7 +27,7 @@ public: private: static const options_entry s_option_entries[]; - std::list m_descriptions; + std::list m_descriptions; }; #endif // MAME_FRONTEND_PLUGINOPTS_H -- cgit v1.2.3