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 23:22:11 +01:00
parent 93812422e1
commit c6596c5fa8
759 changed files with 50525 additions and 50525 deletions

View File

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