diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-14 19:57:38 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-14 19:57:38 +0100 |
commit | ee644efa0c6bf9e5e31e5eb59df49f99d4175876 (patch) | |
tree | 7715c418977f37f139ca89465df471cd2d8589f4 /src/path-search-result.hpp | |
parent | c775f4a2b2ade7767d0028ec69f847006805c6b7 (diff) |
clean up the vector wrapper
Diffstat (limited to 'src/path-search-result.hpp')
-rw-r--r-- | src/path-search-result.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path-search-result.hpp b/src/path-search-result.hpp index b12b23d3..d29fdc44 100644 --- a/src/path-search-result.hpp +++ b/src/path-search-result.hpp @@ -24,7 +24,7 @@ struct path_search_result final uint32_t distance() const; void set_distance(uint32_t dist); - vector_wrapper<point> raw_path(); + vector_wrapper<point, vector_wrapper_repr::lvalue_reference_to_vector> raw_path(); ArrayView<const point> path() const; explicit operator ArrayView<const point>() const; explicit operator bool() const; |