File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 20
20
#include < memory>
21
21
#include < random>
22
22
#include < string>
23
+ #include < utility>
23
24
#include < vector>
24
25
25
26
#include " src/field_instance.h"
@@ -429,7 +430,7 @@ class PostProcessing {
429
430
std::unordered_multimap<const Descriptor*, Mutator::PostProcess>;
430
431
431
432
PostProcessing (bool keep_initialized, const PostProcessors& post_processors,
432
- UnpackedAny& any, RandomEngine* random)
433
+ const UnpackedAny& any, RandomEngine* random)
433
434
: keep_initialized_(keep_initialized),
434
435
post_processors_ (post_processors),
435
436
any_(any),
@@ -498,7 +499,7 @@ class PostProcessing {
498
499
private:
499
500
bool keep_initialized_;
500
501
const PostProcessors& post_processors_;
501
- UnpackedAny& any_;
502
+ const UnpackedAny& any_;
502
503
RandomEngine* random_;
503
504
};
504
505
You can’t perform that action at this time.
0 commit comments