mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-14 04:03:46 +00:00
* BugFix: Clear some MSVC compiler warnings.
This commit is contained in:
parent
026409ed7f
commit
5d26dba7da
23 changed files with 24 additions and 111 deletions
|
|
@ -74,7 +74,7 @@ void StmtNode::addBreakLine(CodeStream& code)
|
|||
|
||||
//------------------------------------------------------------
|
||||
|
||||
StmtNode::StmtNode()
|
||||
StmtNode::StmtNode() : dbgLineNumber(0)
|
||||
{
|
||||
next = NULL;
|
||||
dbgFileName = CodeBlock::smCurrentParser->getCurrentFile();
|
||||
|
|
@ -84,12 +84,12 @@ void StmtNode::setPackage(StringTableEntry)
|
|||
{
|
||||
}
|
||||
|
||||
void StmtNode::append(StmtNode* next)
|
||||
void StmtNode::append(StmtNode* appended)
|
||||
{
|
||||
StmtNode* walk = this;
|
||||
while (walk->next)
|
||||
walk = walk->next;
|
||||
walk->next = next;
|
||||
walk->next = appended;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue