From aead29310ea5abf54baefe88619f2c3ac149fb72 Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Thu, 14 Nov 2024 13:36:31 +0100
Subject: [PATCH] Fix regex in local_subs

---
 cmake_modules/local_subs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake_modules/local_subs.py b/cmake_modules/local_subs.py
index 892e14054..e40b70913 100644
--- a/cmake_modules/local_subs.py
+++ b/cmake_modules/local_subs.py
@@ -98,7 +98,7 @@ subs = {
         ('',                     'ORGLQ',                'ORGLQ',                'UNGLQ',                'UNGLQ'               ),
         ('',                     'SYEV',                 'SYEV',                 'HEEV',                 'HEEV'                ),
         ('',                     '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
-- 
GitLab