From 4954e0fa753cbc6fac26ea4dda466914bdb00442 Mon Sep 17 00:00:00 2001 From: Swann Perarnau Date: Mon, 25 Mar 2019 15:35:13 -0500 Subject: [PATCH] [fix] use local headers in aml.h To ensure that unit tests include the right version of the code, aml.h should include local header. This also works for installed programs. --- include/aml.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/aml.h b/include/aml.h index bc641a7..35c35a2 100644 --- a/include/aml.h +++ b/include/aml.h @@ -29,9 +29,9 @@ #define PAGE_SIZE 4096 #endif -#include -#include -#include +#include "aml/utils/version.h" +#include "aml/utils/bitmap.h" +#include "aml/utils/vector.h" /******************************************************************************* * General functions: -- GitLab