attempt to fix alignment error in expression factors

release/4.3a0
Chris Beall 2019-01-09 17:58:52 -08:00
parent 92f8f8103e
commit d2cedc6c96
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ template<int T> struct CallRecord;
/// Storage type for the execution trace.
/// It enforces the proper alignment in a portable way.
/// Provide a traceSize() sized array of this type to traceExecution as traceStorage.
static const unsigned TraceAlignment = 16;
static const unsigned TraceAlignment = 32;
typedef boost::aligned_storage<1, TraceAlignment>::type ExecutionTraceStorage;
template<bool UseBlock, typename Derived>