mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 19:15:54 +00:00
Implement C++14 std::make_reverse_iterator
This commit is contained in:
@@ -144,6 +144,7 @@
|
|||||||
<ClInclude Include="..\..\beast\cxx14\algorithm.h" />
|
<ClInclude Include="..\..\beast\cxx14\algorithm.h" />
|
||||||
<ClInclude Include="..\..\beast\cxx14\config.h" />
|
<ClInclude Include="..\..\beast\cxx14\config.h" />
|
||||||
<ClInclude Include="..\..\beast\cxx14\functional.h" />
|
<ClInclude Include="..\..\beast\cxx14\functional.h" />
|
||||||
|
<ClInclude Include="..\..\beast\cxx14\iterator.h" />
|
||||||
<ClInclude Include="..\..\beast\cxx14\memory.h" />
|
<ClInclude Include="..\..\beast\cxx14\memory.h" />
|
||||||
<ClInclude Include="..\..\beast\cxx14\type_traits.h" />
|
<ClInclude Include="..\..\beast\cxx14\type_traits.h" />
|
||||||
<ClInclude Include="..\..\beast\cxx14\utility.h" />
|
<ClInclude Include="..\..\beast\cxx14\utility.h" />
|
||||||
|
|||||||
@@ -1053,6 +1053,9 @@
|
|||||||
<ClInclude Include="..\..\beast\cxx14\algorithm.h">
|
<ClInclude Include="..\..\beast\cxx14\algorithm.h">
|
||||||
<Filter>beast\cxx14</Filter>
|
<Filter>beast\cxx14</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\beast\cxx14\iterator.h">
|
||||||
|
<Filter>beast\cxx14</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\beast\cxx14\memory.h">
|
<ClInclude Include="..\..\beast\cxx14\memory.h">
|
||||||
<Filter>beast\cxx14</Filter>
|
<Filter>beast\cxx14</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
|||||||
45
beast/cxx14/iterator.h
Normal file
45
beast/cxx14/iterator.h
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
/*
|
||||||
|
This file is part of Beast: https://github.com/vinniefalco/Beast
|
||||||
|
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
|
||||||
|
|
||||||
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
purpose with or without fee is hereby granted, provided that the above
|
||||||
|
copyright notice and this permission notice appear in all copies.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||||
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||||
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
*/
|
||||||
|
//==============================================================================
|
||||||
|
|
||||||
|
#ifndef BEAST_CXX14_ITERATOR_H_INCLUDED
|
||||||
|
#define BEAST_CXX14_ITERATOR_H_INCLUDED
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#include <iterator>
|
||||||
|
|
||||||
|
#if ! BEAST_NO_CXX14_COMPATIBILITY
|
||||||
|
|
||||||
|
namespace std {
|
||||||
|
|
||||||
|
// C++14 implementation of std::make_reverse_iterator to allow creation of a
|
||||||
|
// reverse iterator from a given iterator.
|
||||||
|
template <class Iter>
|
||||||
|
inline
|
||||||
|
reverse_iterator<Iter>
|
||||||
|
make_reverse_iterator(Iter i)
|
||||||
|
{
|
||||||
|
return reverse_iterator<Iter>(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user