Bug 1144366 - Switch SpiderMonkey and XPConnect style from |T *t| to |T* t|. r=jorendorff
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
namespace js {
|
||||
|
||||
extern void *
|
||||
extern void*
|
||||
GetNativeStackBaseImpl();
|
||||
|
||||
inline uintptr_t
|
||||
@@ -19,7 +19,7 @@ GetNativeStackBase()
|
||||
{
|
||||
uintptr_t stackBase = reinterpret_cast<uintptr_t>(GetNativeStackBaseImpl());
|
||||
MOZ_ASSERT(stackBase != 0);
|
||||
MOZ_ASSERT(stackBase % sizeof(void *) == 0);
|
||||
MOZ_ASSERT(stackBase % sizeof(void*) == 0);
|
||||
return stackBase;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user