mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
.cosmetics
git-svn-id: svn://ultimatepp.org/upp/trunk@8109 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
074c4c2f77
commit
e45d9cc3e8
3 changed files with 3 additions and 3 deletions
|
|
@ -32,7 +32,7 @@ link(SOLARIS) "-Wl,-R -Wl,/usr/local/lib";
|
|||
link(GCC POSIX STACKTRACE) -rdynamic;
|
||||
|
||||
file
|
||||
Core.h options PCH,
|
||||
Core.h options(BUILDER_OPTION) PCH,
|
||||
config.h,
|
||||
Defs.h,
|
||||
Cpu.cpp optimize_speed,
|
||||
|
|
|
|||
|
|
@ -270,7 +270,7 @@ bool Heap::LTryRealloc(void *ptr, size_t newsize)
|
|||
LLOG("--- TryRealloc " << asString(bh->size));
|
||||
Header *n = bh->Next();
|
||||
if(n->free && newsize <= (size_t)n->size + (size_t)bh->size) {
|
||||
DivideBlock(n->GetBlock(), newsize - n->size);
|
||||
DivideBlock(n->GetBlock(), int(newsize - n->size));
|
||||
bh->size += n->size + sizeof(Header);
|
||||
n->Next()->prev = bh->size;
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ link(WIN32 MSC) /MAP;
|
|||
|
||||
file
|
||||
IDE readonly separator,
|
||||
ide.h options PCH,
|
||||
ide.h options(BUILDER_OPTION) PCH,
|
||||
version.h,
|
||||
UppDlg.h,
|
||||
BaseDlg.cpp,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue