docs for CodeBlock::calcBreakList() sizing
This commit is contained in:
AzaezelX 2023-04-27 11:12:24 -05:00
parent 9e036f142b
commit 339393aa85
3 changed files with 3 additions and 3 deletions

View file

@ -309,7 +309,7 @@ void CodeBlock::calcBreakList()
if (seqCount)
size++;
breakList = new U32[size+3];
breakList = new U32[size+3]; //lineBreakPairs plus pad
breakListSize = size;
line = -1;
seqCount = 0;

View file

@ -863,7 +863,7 @@ public:
public:
/// 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
/// @{

View file

@ -166,7 +166,7 @@ class EngineExportScope : public EngineExport
private:
/// Constructor for the global scope.
EngineExportScope():mExports(NULL){}
EngineExportScope():mExports(nullptr){}
};