Index: include/lldb/Utility/ProcessStructReader.h =================================================================== --- include/lldb/Utility/ProcessStructReader.h +++ include/lldb/Utility/ProcessStructReader.h @@ -63,8 +63,17 @@ // no support for things larger than a uint64_t (yet) if (size > 8) return; +#if 1 + /* work around VS2013 compiler crash */ + ConstString a_ = ConstString(name.c_str( )); + size_t b_ = static_cast(bit_offset/8); + size_t c_ = static_cast(size); + m_fields[a_] = FieldImpl{field_type,b_,c_}; +#else m_fields[ConstString(name.c_str())] = FieldImpl{field_type,static_cast(bit_offset/8),static_cast(size)}; +#endif } + size_t total_size = struct_type.GetByteSize(); lldb::DataBufferSP buffer_sp(new DataBufferHeap(total_size,0)); Error error;