Commit b23a364 1 parent ff680e4 commit b23a364 Copy full SHA for b23a364
File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ bool Covbr2Html::convert(
43
43
static const regex re_X (C_BEGIN_B " X( .*)?(\\ r?\\ n)" );
44
44
45
45
const CONST_C_STRING rep_tf = hc ? " $1<i>$2<u>$3</u>$4</i>" : " $1$2<u>$3</u>$4" ;
46
- const CONST_C_STRING rep_X = hc ? " $1<i>$2 </i>$3 " : " $1$2 $3" ;
46
+ const CONST_C_STRING rep_X = hc ? " $1<i>$2 $3 </i>$4 " : " $1$2 $3$4 " ;
47
47
48
48
#define C_BEGIN_NOK C_BEGIN_B " -->"
49
49
#define C_CONT " (?: (.*))?"
Original file line number Diff line number Diff line change @@ -128,6 +128,11 @@ X 15 inline CoverageHead(const bool b = false):
128
128
19 {}
129
129
20
130
130
21 // full coverage
131
+ 22 // i 0 / 1
132
+ --> 23 inline CoverageHead(const int i):
133
+ 24 // simple bool constructor
134
+ 25 mBool(i != 0),
135
+ 26 mInt(i)
131
136
...
132
137
33 // constructor or
133
138
TF 34 mBool(
Original file line number Diff line number Diff line change
1
+ X:/git/dstw/application/components/BAS/BAS_Analayzer_04.h:
2
+ X:/git/dstw/application/components/BAS/BAS_Analayzer_05.h:
1
3
...
2
4
X 15 inline CoverageHead(const bool b = false):
3
5
16 mBool(b),
@@ -6,6 +8,11 @@ X 15 inline CoverageHead(const bool b = false):
6
8
19 {}
7
9
20
8
10
21 // full coverage
11
+ 22 // i 0 / 1
12
+ --> 23 inline CoverageHead(const int i):
13
+ 24 // simple bool constructor
14
+ 25 mBool(i != 0),
15
+ 26 mInt(i)
9
16
...
10
17
33 // constructor or
11
18
TF 34 mBool(
You can’t perform that action at this time.
0 commit comments