Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1From 191c09c2b086e1b0ab0ca1088e48e35fe492c620 Mon Sep 17 00:00:00 2001 2From: Lukas N Wirz <lnwirz@chem.helsinki.fi> 3Date: Sun, 10 Nov 2024 16:01:46 +0200 4Subject: [PATCH] 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 9e6ca3c62..1cb401897 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- std::advance(this, -1); 19+ std::advance(*this, -1); 20 return res; 21 } 22