File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,12 @@ class Compilation {
84
84
bool hadAbnormalExit;
85
85
int exitCode;
86
86
fine_grained_dependencies::ModuleDepGraph depGraph;
87
+
88
+ Result (const Result &) = delete ;
89
+ Result (Result &&) = default ;
90
+
91
+ Result &operator =(const Result &) = delete ;
92
+ Result &operator =(Result &&) = default ;
87
93
};
88
94
89
95
class IncrementalSchemeComparator {
Original file line number Diff line number Diff line change @@ -188,8 +188,8 @@ class ModuleDepGraph {
188
188
std::unordered_map<std::string, unsigned > dotFileSequenceNumber;
189
189
190
190
public:
191
- const bool verifyFineGrainedDependencyGraphAfterEveryImport;
192
- const bool emitFineGrainedDependencyDotFileAfterEveryImport;
191
+ bool verifyFineGrainedDependencyGraphAfterEveryImport;
192
+ bool emitFineGrainedDependencyDotFileAfterEveryImport;
193
193
194
194
private:
195
195
// / If tracing dependencies, holds a vector used to hold the current path
@@ -203,7 +203,7 @@ class ModuleDepGraph {
203
203
dependencyPathsToJobs;
204
204
205
205
// / For helping with performance tuning, may be null:
206
- UnifiedStatsReporter *const stats;
206
+ UnifiedStatsReporter *stats;
207
207
208
208
// ==============================================================================
209
209
// MARK: ModuleDepGraph - mutating dependencies
You can’t perform that action at this time.
0 commit comments