]> granicus.if.org Git - graphviz/commitdiff
squash a -Wmisleading-indentation warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 3 Apr 2021 01:52:29 +0000 (18:52 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 10 Apr 2021 21:53:50 +0000 (14:53 -0700)
lib/vpsc/pairingheap/PairingHeap.cpp

index 9896d168c5946fe852b26642660250a5581d8bd9..bbf020d7e4364e257a591c8d9bcac83ad5faf125 100644 (file)
@@ -110,7 +110,7 @@ void PairingHeap<T>::deleteMin( )
         root = NULL;
     else
         root = combineSiblings( root->leftChild );
-       counter--;
+    counter--;
     delete oldRoot;
 }