diff options
Diffstat (limited to 'src/search-result.cpp')
-rw-r--r-- | src/search-result.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search-result.cpp b/src/search-result.cpp index ba94b6f0..31f3887c 100644 --- a/src/search-result.cpp +++ b/src/search-result.cpp @@ -93,7 +93,7 @@ const point& path_search_result::operator[](size_t index) const fm_debug_assert(index < _node->vec.size()); return data()[index]; } -vector_wrapper<point, vector_wrapper_repr::lvalue_reference_to_vector> path_search_result::raw_path() { fm_assert(_node); return {_node->vec}; } +vector_wrapper<point, vector_wrapper_repr::ref> path_search_result::raw_path() { fm_assert(_node); return {_node->vec}; } ArrayView<const point> path_search_result::path() const { fm_assert(_node); return {_node->vec.data(), _node->vec.size()}; } } // namespace floormat |