Bug 1144366 - Switch SpiderMonkey and XPConnect style from |T *t| to |T* t|. r=jorendorff
This commit is contained in:
@@ -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_));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user