From eeae2bfee9a710a94e674335312865d1b6f8728c Mon Sep 17 00:00:00 2001 From: Cary R Date: Tue, 1 Oct 2019 18:56:50 -0700 Subject: [PATCH] Fix a syntax issue found while compiling with gcc 5.4 --- pform.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pform.cc b/pform.cc index 862b07690..d1c457fc5 100644 --- a/pform.cc +++ b/pform.cc @@ -354,7 +354,7 @@ static PGenerate*pform_cur_generate = 0; construct, so they can be added to the local scope without conflicting with each other. Generate constructs may nest, so we need a stack. */ -static list> conditional_block_names; +static list > conditional_block_names; /* This tracks the current modport list being processed. This is always within an interface. */