diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-01-22 23:40:41 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-01-22 23:40:41 -0800 |
| commit | 0682bb734d5f8667d5aa1a8c2448d69fc042c53f (patch) | |
| tree | b0ec950f6dd036fcca4343651a13398319b54694 /toolsrc/include | |
| parent | 77eae92e75c4b0d15c14c1f19c93fb41bc60f25e (diff) | |
| download | vcpkg-0682bb734d5f8667d5aa1a8c2448d69fc042c53f.tar.gz vcpkg-0682bb734d5f8667d5aa1a8c2448d69fc042c53f.zip | |
[vcpkg] Store Optional<&> instead of Optional<*>
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/dependencies.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg/dependencies.h b/toolsrc/include/vcpkg/dependencies.h index 8902a7b08..84886c8dc 100644 --- a/toolsrc/include/vcpkg/dependencies.h +++ b/toolsrc/include/vcpkg/dependencies.h @@ -29,7 +29,7 @@ namespace vcpkg::Dependencies Optional<StatusParagraph> status_paragraph; Optional<BinaryControlFile> binary_control_file; - Optional<const SourceControlFile*> source_control_file; + Optional<const SourceControlFile&> source_control_file; }; } |
