Adjusting guards to avoid compiler problems.

This commit is contained in:
Alan Mishchenko 2025-12-24 21:02:20 -08:00
parent 2accf61bcd
commit 52741b9123
2 changed files with 4 additions and 4 deletions

View File

@ -19,12 +19,12 @@
#include "misc/util/abc_namespaces.h"
ABC_NAMESPACE_CXX_HEADER_START
typedef struct Wlc_Ntk_t_ Wlc_Ntk_t;
typedef struct Abc_Cex_t_ Abc_Cex_t;
typedef struct Gia_Man_t_ Gia_Man_t;
ABC_NAMESPACE_CXX_HEADER_START
namespace UFAR {
using VecVecInt = std::vector<std::vector<int> >;

View File

@ -9,10 +9,10 @@
#include "misc/util/abc_namespaces.h"
typedef struct Wlc_Ntk_t_ Wlc_Ntk_t;
ABC_NAMESPACE_CXX_HEADER_START
typedef struct Wlc_Ntk_t_ Wlc_Ntk_t;
namespace UFAR {
class WNetlist {