Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1From c04362c082f35e87afbc9441dd2b3821de179055 Mon Sep 17 00:00:00 2001 2From: Lukas N Wirz <lnwirz@chem.helsinki.fi> 3Date: Sat, 9 Nov 2024 23:15:40 +0200 4Subject: [PATCH] fix --this typo 5 6--- 7 include/vigra/multi_iterator_coupled.hxx | 2 +- 8 1 file changed, 1 insertion(+), 1 deletion(-) 9 10diff --git a/include/vigra/multi_iterator_coupled.hxx b/include/vigra/multi_iterator_coupled.hxx 11index 6831dad5d..9e6ca3c62 100644 12--- a/include/vigra/multi_iterator_coupled.hxx 13+++ b/include/vigra/multi_iterator_coupled.hxx 14@@ -490,7 +490,7 @@ class CoupledScanOrderIterator<N, HANDLES, 0> 15 CoupledScanOrderIterator operator--(int) 16 { 17 CoupledScanOrderIterator res(*this); 18- --this; 19+ std::advance(this, -1); 20 return res; 21 } 22