fix bug #320 (pretty gdb printer on mingw)

This commit is contained in:
Gael Guennebaud 2011-07-20 11:15:42 +02:00
parent 705023fd85
commit d4bd8bddb5

View File

@ -62,12 +62,12 @@ class EigenMatrixPrinter:
template_params = m.split(',') template_params = m.split(',')
template_params = map(lambda x:x.replace(" ", ""), template_params) template_params = map(lambda x:x.replace(" ", ""), template_params)
if template_params[1] == '-0x00000000000000001': if template_params[1] == '-0x00000000000000001' or template_params[1] == '-0x000000001':
self.rows = val['m_storage']['m_rows'] self.rows = val['m_storage']['m_rows']
else: else:
self.rows = int(template_params[1]) self.rows = int(template_params[1])
if template_params[2] == '-0x00000000000000001': if template_params[2] == '-0x00000000000000001' or template_params[2] == '-0x000000001':
self.cols = val['m_storage']['m_cols'] self.cols = val['m_storage']['m_cols']
else: else:
self.cols = int(template_params[2]) self.cols = int(template_params[2])