Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
c0263992
Commit
c0263992
authored
Oct 05, 2016
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
"fix" inconsistent overrides
This warning is quite annoying right now
parent
4e408bf7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
20 deletions
+20
-20
src/core/bst.cpp
src/core/bst.cpp
+20
-20
No files found.
src/core/bst.cpp
View file @
c0263992
...
...
@@ -1542,83 +1542,83 @@ public:
return
false
;
}
virtual
bool
visit_landingpad
(
BST_Landingpad
*
node
)
override
{
virtual
bool
visit_landingpad
(
BST_Landingpad
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_locals
(
BST_Locals
*
node
)
override
{
virtual
bool
visit_locals
(
BST_Locals
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_getiter
(
BST_GetIter
*
node
)
override
{
virtual
bool
visit_getiter
(
BST_GetIter
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_importfrom
(
BST_ImportFrom
*
node
)
override
{
virtual
bool
visit_importfrom
(
BST_ImportFrom
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_importname
(
BST_ImportName
*
node
)
override
{
virtual
bool
visit_importname
(
BST_ImportName
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_importstar
(
BST_ImportStar
*
node
)
override
{
virtual
bool
visit_importstar
(
BST_ImportStar
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_nonzero
(
BST_Nonzero
*
node
)
override
{
virtual
bool
visit_nonzero
(
BST_Nonzero
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_checkexcmatch
(
BST_CheckExcMatch
*
node
)
override
{
virtual
bool
visit_checkexcmatch
(
BST_CheckExcMatch
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_setexcinfo
(
BST_SetExcInfo
*
node
)
override
{
virtual
bool
visit_setexcinfo
(
BST_SetExcInfo
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_uncacheexcinfo
(
BST_UncacheExcInfo
*
node
)
override
{
virtual
bool
visit_uncacheexcinfo
(
BST_UncacheExcInfo
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_hasnext
(
BST_HasNext
*
node
)
override
{
virtual
bool
visit_hasnext
(
BST_HasNext
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_printexpr
(
BST_PrintExpr
*
node
)
override
{
virtual
bool
visit_printexpr
(
BST_PrintExpr
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_loadname
(
BST_LoadName
*
node
)
override
{
virtual
bool
visit_loadname
(
BST_LoadName
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_loadattr
(
BST_LoadAttr
*
node
)
override
{
virtual
bool
visit_loadattr
(
BST_LoadAttr
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_loadsub
(
BST_LoadSub
*
node
)
override
{
virtual
bool
visit_loadsub
(
BST_LoadSub
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_loadsubslice
(
BST_LoadSubSlice
*
node
)
override
{
virtual
bool
visit_loadsubslice
(
BST_LoadSubSlice
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_storename
(
BST_StoreName
*
node
)
override
{
virtual
bool
visit_storename
(
BST_StoreName
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_storesub
(
BST_StoreSub
*
node
)
override
{
virtual
bool
visit_storesub
(
BST_StoreSub
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_storesubslice
(
BST_StoreSubSlice
*
node
)
override
{
virtual
bool
visit_storesubslice
(
BST_StoreSubSlice
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
virtual
bool
visit_storeattr
(
BST_StoreAttr
*
node
)
override
{
virtual
bool
visit_storeattr
(
BST_StoreAttr
*
node
)
{
output
->
push_back
(
node
);
return
false
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment