.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@8109 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-01-31 12:39:40 +00:00
parent 074c4c2f77
commit e45d9cc3e8
3 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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;

View file

@ -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,