From db54d0b05213002e023350df31f87db53d96b11d Mon Sep 17 00:00:00 2001 From: Andrey Date: Fri, 22 Apr 2022 12:13:43 +0300 Subject: [PATCH] mistake --- libs/main/containers/pivector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/main/containers/pivector.h b/libs/main/containers/pivector.h index dc645447..11631a44 100644 --- a/libs/main/containers/pivector.h +++ b/libs/main/containers/pivector.h @@ -1801,7 +1801,7 @@ public: //! piCout << v; // {1, 2, 3, 4, 5} //! \endcode //! \~\sa \a append() - inline PIVector & operator <<(T && e) { eturn push_back(std::move(e));} + inline PIVector & operator <<(T && e) {return push_back(std::move(e));} //! \brief //! \~english Appends the given array `v` to the end of the array.