diff options
author | David Robillard <d@drobilla.net> | 2019-03-17 17:31:05 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-17 18:14:27 +0100 |
commit | f164950f61a0dad02a1bce247087a0323eeab322 (patch) | |
tree | 4aed405b97428001f6396e1d23ccb218ce620000 /waflib/Tools/c_preproc.py | |
parent | db07a21d4848455580d6c58ce32128266dd4f47f (diff) | |
parent | 406f89271452fdb573c7e28113b1ed08ff2b4eda (diff) | |
download | suil-f164950f61a0dad02a1bce247087a0323eeab322.tar.gz suil-f164950f61a0dad02a1bce247087a0323eeab322.tar.bz2 suil-f164950f61a0dad02a1bce247087a0323eeab322.zip |
Update autowaf and adapt to new API
Diffstat (limited to 'waflib/Tools/c_preproc.py')
-rw-r--r-- | waflib/Tools/c_preproc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/waflib/Tools/c_preproc.py b/waflib/Tools/c_preproc.py index 7e04b4a..68e5f5a 100644 --- a/waflib/Tools/c_preproc.py +++ b/waflib/Tools/c_preproc.py @@ -75,13 +75,13 @@ re_lines = re.compile( re.IGNORECASE | re.MULTILINE) """Match #include lines""" -re_mac = re.compile("^[a-zA-Z_]\w*") +re_mac = re.compile(r"^[a-zA-Z_]\w*") """Match macro definitions""" re_fun = re.compile('^[a-zA-Z_][a-zA-Z0-9_]*[(]') """Match macro functions""" -re_pragma_once = re.compile('^\s*once\s*', re.IGNORECASE) +re_pragma_once = re.compile(r'^\s*once\s*', re.IGNORECASE) """Match #pragma once statements""" re_nl = re.compile('\\\\\r*\n', re.MULTILINE) @@ -660,7 +660,7 @@ def extract_macro(txt): # empty define, assign an empty token return (v, [[], [('T','')]]) -re_include = re.compile('^\s*(<(?:.*)>|"(?:.*)")') +re_include = re.compile(r'^\s*(<(?:.*)>|"(?:.*)")') def extract_include(txt, defs): """ Process a line in the form:: |