From 26c0e6ba00e2064a4e58795a993f0ccff5f3a5ff Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 16 Nov 2020 07:31:12 -0500 Subject: [PATCH] Fix missing array include. --- src/V3Error.h | 1 + src/V3Os.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/V3Error.h b/src/V3Error.h index dc74e55ad..a895a9cdb 100644 --- a/src/V3Error.h +++ b/src/V3Error.h @@ -23,6 +23,7 @@ // Limited V3 headers here - this is a base class for Vlc etc #include "V3String.h" +#include #include #include #include diff --git a/src/V3Os.h b/src/V3Os.h index 8c328c89b..21fa583b9 100644 --- a/src/V3Os.h +++ b/src/V3Os.h @@ -20,6 +20,8 @@ #include "config_build.h" #include "verilatedos.h" +#include + // Limited V3 headers here - this is a base class for Vlc etc #include "V3Error.h"