Fix CI failure -- these need to remain in the original order

This commit is contained in:
Michael Hansen
2022-12-02 14:16:18 -08:00
parent ffeabc3d3f
commit 2075a4ac1f

View File

@@ -3,11 +3,11 @@
#include "pyc_sequence.h"
#include "pyc_string.h"
#include <set>
#include <vector>
class PycCode : public PycObject {
public:
typedef std::set<PycRef<PycString>> globals_t;
typedef std::vector<PycRef<PycString>> globals_t;
enum CodeFlags {
CO_OPTIMIZED = 0x1,
CO_NEWLOCALS = 0x2,
@@ -77,7 +77,7 @@ public:
void markGlobal(PycRef<PycString> varname)
{
m_globalsUsed.emplace(std::move(varname));
m_globalsUsed.emplace_back(std::move(varname));
}
private: