Bug 1144366 - Switch SpiderMonkey and XPConnect style from |T *t| to |T* t|. r=jorendorff

This commit is contained in:
Jan de Mooij
2015-03-28 12:08:37 +01:00
parent ec84d22cf9
commit 369ef1b850
759 changed files with 50565 additions and 50565 deletions

View File

@@ -10,14 +10,14 @@
using namespace js;
void *
TempAllocPolicy::onOutOfMemory(void *p, size_t nbytes)
void*
TempAllocPolicy::onOutOfMemory(void* p, size_t nbytes)
{
return static_cast<ExclusiveContext *>(cx_)->onOutOfMemory(p, nbytes);
return static_cast<ExclusiveContext*>(cx_)->onOutOfMemory(p, nbytes);
}
void
TempAllocPolicy::reportAllocOverflow() const
{
ReportAllocationOverflow(static_cast<ExclusiveContext *>(cx_));
ReportAllocationOverflow(static_cast<ExclusiveContext*>(cx_));
}