mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-30 09:38:14 -05:00
common,qt-config: Remove usage of forward_list
This commit is contained in:
@ -3,13 +3,14 @@
|
||||
|
||||
#include <memory>
|
||||
#include <type_traits>
|
||||
#include <vector>
|
||||
#include "yuzu/configuration/configuration_shared.h"
|
||||
|
||||
namespace ConfigurationShared {
|
||||
|
||||
Tab::Tab(std::shared_ptr<std::forward_list<Tab*>> group, QWidget* parent) : QWidget(parent) {
|
||||
Tab::Tab(std::shared_ptr<std::vector<Tab*>> group, QWidget* parent) : QWidget(parent) {
|
||||
if (group != nullptr) {
|
||||
group->push_front(this);
|
||||
group->push_back(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user