diff options
| -rw-r--r-- | manual/CHAPTER_Prog/stubnets.cc | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/manual/CHAPTER_Prog/stubnets.cc b/manual/CHAPTER_Prog/stubnets.cc index 8880af5a6..4849c6a7b 100644 --- a/manual/CHAPTER_Prog/stubnets.cc +++ b/manual/CHAPTER_Prog/stubnets.cc @@ -5,15 +5,16 @@  // binary, for any purpose, commercial or non-commercial, and by any  // means. -#include "kernel/rtlil.h" -#include "kernel/register.h" +#include "kernel/yosys.h"  #include "kernel/sigtools.h" -#include "kernel/log.h"  #include <string>  #include <map>  #include <set> +USING_YOSYS_NAMESPACE +PRIVATE_NAMESPACE_BEGIN +  // this function is called for each module in the design  static void find_stub_nets(RTLIL::Design *design, RTLIL::Module *module, bool report_bits)  { @@ -126,3 +127,4 @@ struct StubnetsPass : public Pass {  	}  } StubnetsPass; +PRIVATE_NAMESPACE_END | 
