Index: base/process/launch_posix.cc |
diff --git a/base/process/launch_posix.cc b/base/process/launch_posix.cc |
index b841dee3276eae3cfa9ee7b18c6bf86b14932e3a..ed5ef96674a0d39caa4ca5c62d41fcd18784509d 100644 |
--- a/base/process/launch_posix.cc |
+++ b/base/process/launch_posix.cc |
@@ -726,7 +726,7 @@ NOINLINE pid_t CloneAndLongjmpInChild(unsigned long flags, |
// internal pid cache. The libc interface unfortunately requires |
// specifying a new stack, so we use setjmp/longjmp to emulate |
// fork-like behavior. |
- char stack_buf[PTHREAD_STACK_MIN] ALIGNAS(16); |
+ alignas(16) char stack_buf[PTHREAD_STACK_MIN]; |
#if defined(ARCH_CPU_X86_FAMILY) || defined(ARCH_CPU_ARM_FAMILY) || \ |
defined(ARCH_CPU_MIPS_FAMILY) |
// The stack grows downward. |