Skip to content

Commit

Permalink
PODVector: Add a Missing STL Include (#3445)
Browse files Browse the repository at this point in the history
Used by `std::reverse_iterator`.
  • Loading branch information
ax3l authored Jul 25, 2023
1 parent 5dfb040 commit e0583fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Src/Base/AMReX_PODVector.H
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <AMReX_GpuDevice.H>
#include <AMReX_TypeTraits.H>

#include <iterator>
#include <type_traits>
#include <utility>
#include <memory>
Expand Down Expand Up @@ -230,7 +231,7 @@ namespace amrex

using const_reference = const T&;
using const_pointer = const T*;
using const_iterator = const T* ;
using const_iterator = const T*;
using const_reverse_iterator = std::reverse_iterator<const_iterator>;

private:
Expand Down

0 comments on commit e0583fb

Please sign in to comment.