mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-15 22:44:42 -04:00
bump test mod target versions + fix msvc warning about ast.hpp finally
This commit is contained in:
parent
1b0f87c271
commit
9607c898b9
3 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@ struct FunctionBegin {
|
|||
if (name != f.name || is_const != f.is_const || args.size() != f.args.size())
|
||||
return false;
|
||||
|
||||
for (int i=0; i<args.size(); ++i) {
|
||||
for (size_t i = 0; i < args.size(); ++i) {
|
||||
if (!(args[i].first == f.args[i].first))
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"geode": "v0.2.1",
|
||||
"geode": "v0.4.1",
|
||||
"version": "v1.0.0",
|
||||
"id": "geode.testdep",
|
||||
"name": "Geode Test Dependency",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"geode": "v0.2.1",
|
||||
"geode": "v0.4.1",
|
||||
"version": "v1.0.0",
|
||||
"id": "geode.test",
|
||||
"name": "Geode Test",
|
||||
|
|
Loading…
Add table
Reference in a new issue