From f06ad06ad7f22eb053026969b061bb0273c28531 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Fri, 18 Oct 2024 02:21:38 +0900 Subject: [PATCH] refactor: rm argument(same as default) of retrace --- include/toml11/impl/location_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/toml11/impl/location_impl.hpp b/include/toml11/impl/location_impl.hpp index 73e234f..a7751a1 100644 --- a/include/toml11/impl/location_impl.hpp +++ b/include/toml11/impl/location_impl.hpp @@ -142,7 +142,7 @@ TOML11_INLINE bool operator!=(const location& lhs, const location& rhs) TOML11_INLINE location prev(const location& loc) { location p(loc); - p.retrace(1); + p.retrace(); return p; } TOML11_INLINE location next(const location& loc)