2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Fix c-scanner regex pattern

This commit is contained in:
Kohei Takahashi
2012-08-09 14:41:07 +09:00
committed by Vladimir Prus
parent b116fbaeba
commit 5ce453de47

View File

@@ -30,7 +30,7 @@ class c-scanner : scanner
rule pattern ( )
{
return "#[ \t]*include[ ]*(<(.*)>|\"(.*)\")" ;
return "#[ \t]*include[ \t]*(<(.*)>|\"(.*)\")" ;
}
rule process ( target : matches * : binding )