File tree 8 files changed +16
-16
lines changed
8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ struct Generator
82
82
bool
83
83
build (
84
84
llvm::StringRef outputPath,
85
- Corpus& corpus,
85
+ Corpus const & corpus,
86
86
Reporter& R) const ;
87
87
88
88
/* * Build single-file documentation from the corpus and configuration.
@@ -110,7 +110,7 @@ struct Generator
110
110
bool
111
111
buildOne (
112
112
llvm::StringRef fileName,
113
- Corpus& corpus,
113
+ Corpus const & corpus,
114
114
Reporter& R) const = 0 ;
115
115
116
116
/* * Build a string containing the single-file documentation.
@@ -138,7 +138,7 @@ struct Generator
138
138
bool
139
139
buildString (
140
140
std::string& dest,
141
- Corpus& corpus,
141
+ Corpus const & corpus,
142
142
Reporter& R) const = 0 ;
143
143
};
144
144
Original file line number Diff line number Diff line change 21
21
Generator::
22
22
build (
23
23
StringRef outputPath,
24
- Corpus& corpus,
24
+ Corpus const & corpus,
25
25
Reporter& R) const
26
26
{
27
27
namespace fs = llvm::sys::fs;
Original file line number Diff line number Diff line change 28
28
AsciidocGenerator::
29
29
build (
30
30
llvm::StringRef rootPath,
31
- Corpus& corpus,
31
+ Corpus const & corpus,
32
32
Reporter& R) const
33
33
{
34
34
namespace path = llvm::sys::path;
89
89
AsciidocGenerator::
90
90
buildOne (
91
91
llvm::StringRef fileName,
92
- Corpus& corpus,
92
+ Corpus const & corpus,
93
93
Reporter& R) const
94
94
{
95
95
namespace fs = llvm::sys::fs;
115
115
AsciidocGenerator::
116
116
buildString (
117
117
std::string& dest,
118
- Corpus& corpus,
118
+ Corpus const & corpus,
119
119
Reporter& R) const
120
120
{
121
121
dest.clear ();
Original file line number Diff line number Diff line change @@ -50,19 +50,19 @@ class AsciidocGenerator
50
50
bool
51
51
build (
52
52
llvm::StringRef rootPath,
53
- Corpus& corpus,
53
+ Corpus const & corpus,
54
54
Reporter& R) const override ;
55
55
56
56
bool
57
57
buildOne (
58
58
llvm::StringRef fileName,
59
- Corpus& corpus,
59
+ Corpus const & corpus,
60
60
Reporter& R) const override ;
61
61
62
62
bool
63
63
buildString (
64
64
std::string& dest,
65
- Corpus& corpus,
65
+ Corpus const & corpus,
66
66
Reporter& R) const override ;
67
67
};
68
68
Original file line number Diff line number Diff line change 109
109
XMLGenerator::
110
110
buildOne (
111
111
llvm::StringRef fileName,
112
- Corpus& corpus,
112
+ Corpus const & corpus,
113
113
Reporter& R) const
114
114
{
115
115
namespace fs = llvm::sys::fs;
133
133
XMLGenerator::
134
134
buildString (
135
135
std::string& dest,
136
- Corpus& corpus,
136
+ Corpus const & corpus,
137
137
Reporter& R) const
138
138
{
139
139
dest.clear ();
Original file line number Diff line number Diff line change @@ -40,13 +40,13 @@ struct XMLGenerator : Generator
40
40
bool
41
41
buildOne (
42
42
llvm::StringRef fileName,
43
- Corpus& corpus,
43
+ Corpus const & corpus,
44
44
Reporter& R) const override ;
45
45
46
46
bool
47
47
buildString (
48
48
std::string& dest,
49
- Corpus& corpus,
49
+ Corpus const & corpus,
50
50
Reporter& R) const override ;
51
51
};
52
52
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ checkDirRecursively(
86
86
void
87
87
Tester::
88
88
checkOneFile (
89
- Corpus& corpus,
89
+ Corpus const & corpus,
90
90
llvm::StringRef inputPath,
91
91
llvm::SmallVectorImpl<char >& outputPathStr)
92
92
{
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class Tester
45
45
46
46
void
47
47
checkOneFile (
48
- Corpus& corpus,
48
+ Corpus const & corpus,
49
49
llvm::StringRef inputPath,
50
50
llvm::SmallVectorImpl<char >& outputPathStr);
51
51
};
You can’t perform that action at this time.
0 commit comments