From 3c9d94fcd5592a86279494e919a2261757f4e4f3 Mon Sep 17 00:00:00 2001 From: bd Date: Wed, 23 Apr 2025 00:22:24 -0400 Subject: Add include guards to C11 test --- tests/c11.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/c11.h b/tests/c11.h index e5599db..c2ec76e 100644 --- a/tests/c11.h +++ b/tests/c11.h @@ -1,3 +1,6 @@ +#ifndef C11_H +#define C11_HH + #include "cache.h" #include "dram.h" #include "storage.h" @@ -52,3 +55,5 @@ class C11 std::array expected; std::array actual; }; + +#endif /* C11_H_INCLUDED */ -- cgit v1.2.3