diff --git a/VTIL-Architecture/routine/routine.cpp b/VTIL-Architecture/routine/routine.cpp index d25da5f..5263831 100644 --- a/VTIL-Architecture/routine/routine.cpp +++ b/VTIL-Architecture/routine/routine.cpp @@ -291,7 +291,7 @@ namespace vtil // Gets a list of depth ordered block lists that can be analysed in parallel without any dependencies on previous level. // - std::vector routine::get_depth_ordered_list( bool fwd ) const + std::vector routine::get_depth_ordered_list( bool fwd ) const { // Acquire the routine mutex. // diff --git a/VTIL-Architecture/routine/routine.hpp b/VTIL-Architecture/routine/routine.hpp index 6562a90..d077429 100644 --- a/VTIL-Architecture/routine/routine.hpp +++ b/VTIL-Architecture/routine/routine.hpp @@ -108,7 +108,7 @@ namespace vtil // Cache of depth ordered lists. // - struct depth_entry + struct depth_placement { size_t level_dependency; size_t level_depth; @@ -117,7 +117,7 @@ namespace vtil struct depth_ordered_list { epoch_t epoch = invalid_epoch; - std::vector list; + std::vector list; }; mutable depth_ordered_list depth_ordered_list_cache[ 2 ]; @@ -236,7 +236,7 @@ namespace vtil // Gets a list of depth ordered block lists that can be analysed in parallel without any dependencies on previous level. // - std::vector get_depth_ordered_list( bool fwd ) const; + std::vector get_depth_ordered_list( bool fwd ) const; // Provide basic statistics about the complexity of the routine. // diff --git a/VTIL-Common/util/range.hpp b/VTIL-Common/util/range.hpp index 7bb3afa..46353a0 100644 --- a/VTIL-Common/util/range.hpp +++ b/VTIL-Common/util/range.hpp @@ -38,7 +38,7 @@ namespace vtil iterator_type iend; constexpr iterator_type begin() const { return ibegin; } - constexpr iterator_type end() const { return iend; } + constexpr iterator_type end() const { return iend; } }; template