mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Merge pull request #5973 from ligfx/renamefifoqueue
Rename Common::FifoQueue to Common::SPSCQueue
This commit is contained in:
commit
b8c83dd5f3
13 changed files with 35 additions and 35 deletions
|
@ -33,9 +33,9 @@
|
|||
#include "Common/CommonPaths.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/Config/Config.h"
|
||||
#include "Common/FifoQueue.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Common/MsgHandler.h"
|
||||
#include "Common/SPSCQueue.h"
|
||||
#include "Common/StringUtil.h"
|
||||
|
||||
#include "Core/Config/SYSCONFSettings.h"
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <wx/frame.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/FifoQueue.h"
|
||||
#include "Common/SPSCQueue.h"
|
||||
#include "Core/NetPlayClient.h"
|
||||
#include "Core/NetPlayProto.h"
|
||||
#include "Core/NetPlayServer.h"
|
||||
|
@ -161,7 +161,7 @@ private:
|
|||
std::string m_desync_player;
|
||||
|
||||
std::vector<int> m_playerids;
|
||||
Common::FifoQueue<std::string> m_chat_msgs;
|
||||
Common::SPSCQueue<std::string> m_chat_msgs;
|
||||
|
||||
const GameListCtrl* const m_game_list;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue