Mentions légales du service

Skip to content
Snippets Groups Projects
Commit aead2931 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Fix regex in local_subs

parent 4fe39bc2
No related branches found
No related tags found
1 merge request!498Fix cblas/lapacke prototypes by removing incorrect and useless const
...@@ -98,7 +98,7 @@ subs = { ...@@ -98,7 +98,7 @@ subs = {
('', 'ORGLQ', 'ORGLQ', 'UNGLQ', 'UNGLQ' ), ('', 'ORGLQ', 'ORGLQ', 'UNGLQ', 'UNGLQ' ),
('', 'SYEV', 'SYEV', 'HEEV', 'HEEV' ), ('', 'SYEV', 'SYEV', 'HEEV', 'HEEV' ),
('', 'SYG', 'SYG', 'HEG', 'HEG' ), ('', 'SYG', 'SYG', 'HEG', 'HEG' ),
('', 'const float ', 'const double ', 'const void \*', 'const void \*' ), ('', 'const float ', 'const double ', r'const void \*', r'const void \*' ), # Line that is extremely dangerous.
] ]
+ _extra_blas + _extra_blas
+ _extra_BLAS + _extra_BLAS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment