From d8d974d8712115c03e47553dd9247df74bb8d1de Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Sat, 28 Sep 2019 15:34:44 +0200 Subject: [PATCH] svf_jtag: add ifndef ... endif in hpp file to avoid multiple definition --- svf_jtag.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/svf_jtag.hpp b/svf_jtag.hpp index ad20503..22bef2f 100644 --- a/svf_jtag.hpp +++ b/svf_jtag.hpp @@ -1,5 +1,8 @@ +#ifndef SVF_JTAG_HPP +#define SVF_JTAG_HPP #include #include +#include using namespace std; class SVF_jtag { @@ -58,3 +61,4 @@ class SVF_jtag { svf_XYR tdr; svf_XYR tir; }; +#endif