refactor: rm argument(same as default) of retrace

This commit is contained in:
ToruNiina
2024-10-18 02:21:38 +09:00
parent 5fbb86d989
commit f06ad06ad7

View File

@@ -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)