mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
docs for CodeBlock::calcBreakList() sizing
This commit is contained in:
parent
9e036f142b
commit
339393aa85
3 changed files with 3 additions and 3 deletions
|
|
@ -309,7 +309,7 @@ void CodeBlock::calcBreakList()
|
||||||
if (seqCount)
|
if (seqCount)
|
||||||
size++;
|
size++;
|
||||||
|
|
||||||
breakList = new U32[size+3];
|
breakList = new U32[size+3]; //lineBreakPairs plus pad
|
||||||
breakListSize = size;
|
breakListSize = size;
|
||||||
line = -1;
|
line = -1;
|
||||||
seqCount = 0;
|
seqCount = 0;
|
||||||
|
|
|
||||||
|
|
@ -863,7 +863,7 @@ public:
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Get the classname from a class tag.
|
/// Get the classname from a class tag.
|
||||||
static const char* lookupClassName(const U32 in_classTag) {};
|
static const char* lookupClassName(const U32 in_classTag) { return ""; };
|
||||||
|
|
||||||
/// @name Fields
|
/// @name Fields
|
||||||
/// @{
|
/// @{
|
||||||
|
|
|
||||||
|
|
@ -166,7 +166,7 @@ class EngineExportScope : public EngineExport
|
||||||
private:
|
private:
|
||||||
|
|
||||||
/// Constructor for the global scope.
|
/// Constructor for the global scope.
|
||||||
EngineExportScope():mExports(NULL){}
|
EngineExportScope():mExports(nullptr){}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue