mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 10:29:01 +08:00
[StatusParagraphs] Replace auto with actual type
This commit is contained in:
parent
9502d795bb
commit
cc81c3de6c
@ -1,6 +1,7 @@
|
||||
#pragma once
|
||||
#include "StatusParagraph.h"
|
||||
#include <memory>
|
||||
#include <iterator>
|
||||
|
||||
namespace vcpkg
|
||||
{
|
||||
@ -25,22 +26,22 @@ namespace vcpkg
|
||||
|
||||
friend std::ostream& operator<<(std::ostream&, const StatusParagraphs&);
|
||||
|
||||
auto end()
|
||||
iterator end()
|
||||
{
|
||||
return paragraphs.rend();
|
||||
}
|
||||
|
||||
auto end() const
|
||||
const_iterator end() const
|
||||
{
|
||||
return paragraphs.rend();
|
||||
}
|
||||
|
||||
auto begin()
|
||||
iterator begin()
|
||||
{
|
||||
return paragraphs.rbegin();
|
||||
}
|
||||
|
||||
auto begin() const
|
||||
const_iterator begin() const
|
||||
{
|
||||
return paragraphs.rbegin();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user