sim: Add include guards in simulate.hh (#1737)

This commit is contained in:
Bobby R. Bruce
2024-10-31 00:34:39 -07:00
committed by GitHub
parent 757b272a25
commit b5a73b59ef

View File

@@ -38,6 +38,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __SIMULATE_HH__
#define __SIMULATE_HH__
#include "base/types.hh"
namespace gem5
@@ -78,3 +81,5 @@ void terminateEventQueueThreads();
extern GlobalSimLoopExitEvent *simulate_limit_event;
} // namespace gem5
#endif // __SIMULATE_HH__