diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-08-06 17:04:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-06 17:04:47 -0700 |
| commit | 40c8aab459f6692f68daa0ef431b80ca7ab364c1 (patch) | |
| tree | d49c575bd7be93b2522293e5d54a7ce743b08355 /toolsrc/include | |
| parent | 61c055a6fcfee2a7e764997bb2478adf49db6edf (diff) | |
| download | vcpkg-40c8aab459f6692f68daa0ef431b80ca7ab364c1.tar.gz vcpkg-40c8aab459f6692f68daa0ef431b80ca7ab364c1.zip | |
[vcpkg] Fix vs2015 build (#12789)
* move windows bootstrap directory
* fix paths
* actually fix the build
* fix path
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/base/stringview.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg/base/stringview.h b/toolsrc/include/vcpkg/base/stringview.h index 4f39e9103..405142c36 100644 --- a/toolsrc/include/vcpkg/base/stringview.h +++ b/toolsrc/include/vcpkg/base/stringview.h @@ -37,8 +37,8 @@ namespace vcpkg constexpr const char* begin() const { return m_ptr; } constexpr const char* end() const { return m_ptr + m_size; } - constexpr std::reverse_iterator<const char*> rbegin() const { return std::make_reverse_iterator(end()); } - constexpr std::reverse_iterator<const char*> rend() const { return std::make_reverse_iterator(begin()); } + std::reverse_iterator<const char*> rbegin() const { return std::make_reverse_iterator(end()); } + std::reverse_iterator<const char*> rend() const { return std::make_reverse_iterator(begin()); } constexpr const char* data() const { return m_ptr; } constexpr size_t size() const { return m_size; } |
