From 14c2d25eb29a86da4b806194b51eacdb4e22664e Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 12 Jun 2021 13:28:47 -0700 Subject: [PATCH] replace forward declaration of PairingHeap with include of its header There is no need to play these forward declaration tricks in this scenario. Circular dependencies are not involved. --- lib/vpsc/block.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vpsc/block.h b/lib/vpsc/block.h index 9055c14e5..3a5129b7b 100644 --- a/lib/vpsc/block.h +++ b/lib/vpsc/block.h @@ -21,9 +21,9 @@ #include #include +#include struct Variable; struct Constraint; -template class PairingHeap; class Block { -- 2.50.1