~durga/maus/rel709

« back to all changes in this revision

Viewing changes to tests/style/cpplint_exceptions.py

  • Committer: Durga Rajaram
  • Date: 2013-10-01 00:19:57 UTC
  • mfrom: (659.1.74 rc)
  • Revision ID: durga@fnal.gov-20131001001957-iswih60vis9rodw0
Tags: MAUS-v0.7.1
MAUS-v0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
229
229
('      _sleep_time.tv_sec = static_cast<long>(delay_time);',
230
230
 'This really is a long, it is defined in time.h.', 'rogers')
231
231
]
 
232
 
 
233
exceptions[os.path.join('src', 'py_cpp', 'optics', 'PyCovarianceMatrix.hh')] = [
 
234
('                   reinterpret_cast<CovarianceMatrix* (*)'+\
 
235
                                                      '(PyObject*)>(gcm_void);',
 
236
'cpplint misinterprets function pointer as a cast',
 
237
'rogers')
 
238
]
 
239
 
 
240
exceptions[os.path.join('src', 'py_cpp', 'optics', 'PyPhaseSpaceVector.hh')] = [
 
241
('                  reinterpret_cast<PhaseSpaceVector* (*)'+\
 
242
                                                     '(PyObject*)>(gpsv_void);',
 
243
'cpplint misinterprets function pointer as a cast',
 
244
'rogers')
 
245
]
 
246
 
 
247
exceptions[os.path.join('src', 'py_cpp', 'PyMiceModule.hh')] = [
 
248
('                   reinterpret_cast<MiceModule* (*)(PyObject*)>(gmm_void);',
 
249
'cpplint misinterprets function pointer as a cast',
 
250
'rogers')
 
251
]
 
252