Fix random order of various macro entries

This commit is contained in:
WarmUpTill
2021-05-15 00:40:43 +02:00
committed by WarmUpTill
parent cef513f775
commit 3abeb936b3
14 changed files with 28 additions and 30 deletions

View File

@@ -2,7 +2,7 @@
#include <string>
#include <deque>
#include <memory>
#include <unordered_map>
#include <map>
#include <obs.hpp>
#include <obs-module.h>
@@ -42,7 +42,7 @@ public:
LogicType GetLogicType() { return _logic; }
void SetLogicType(LogicType logic) { _logic = logic; }
static const std::unordered_map<LogicType, LogicTypeInfo> logicTypes;
static const std::map<LogicType, LogicTypeInfo> logicTypes;
private:
LogicType _logic;