Build fix: missing cstdlib include in filter-ir.hpp
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 15 Dec 2022 22:15:15 +0000 (17:15 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 16 Jan 2023 19:49:23 +0000 (14:49 -0500)
A follow-up commit changes the order of inclusions and fails to build
since filter-ir.hpp doesn't include cstdlib for its use of abort().

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I7d96d183745c9c834d272cbbbbb4d9a17e1f281e

src/common/filter/filter-ir.hpp

index 068d3aa5c4e5920437ed5c5b61149b046b7efbd7..958f4e90234aa1ad4100e40b4a4fa9c09863172e 100644 (file)
@@ -14,6 +14,8 @@
 
 #include "filter-ast.hpp"
 
 
 #include "filter-ast.hpp"
 
+#include <cstdlib>
+
 enum ir_op_signedness {
        IR_SIGN_UNKNOWN = 0,
        IR_SIGNED,
 enum ir_op_signedness {
        IR_SIGN_UNKNOWN = 0,
        IR_SIGNED,
This page took 0.024689 seconds and 4 git commands to generate.