Commit f2fcd7bd authored by Sergey Petrunya's avatar Sergey Petrunya

Fix compile error on Windows

parent 00ee44ab
...@@ -1277,7 +1277,7 @@ public: ...@@ -1277,7 +1277,7 @@ public:
virtual void print(String *str); virtual void print(String *str);
void add_to_varlist(struct sp_variable *var) void add_to_varlist(sp_variable *var)
{ {
m_varlist.push_back(var); m_varlist.push_back(var);
} }
...@@ -1285,7 +1285,7 @@ public: ...@@ -1285,7 +1285,7 @@ public:
private: private:
uint m_cursor; uint m_cursor;
List<struct sp_variable> m_varlist; List<sp_variable> m_varlist;
}; // class sp_instr_cfetch : public sp_instr }; // class sp_instr_cfetch : public sp_instr
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment