From 7de1c4d8d0b3da94b641bee3a86e4d59ff9bd13a Mon Sep 17 00:00:00 2001 From: Wiktor Garbacz Date: Fri, 25 Aug 2023 00:34:12 -0700 Subject: [PATCH] More IWYU annotations PiperOrigin-RevId: 560004823 Change-Id: If4d5048d01b09041c8b7175498a751df51ac0ba6 --- sandboxed_api/vars.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sandboxed_api/vars.h b/sandboxed_api/vars.h index 13a7a15..9b97cad 100644 --- a/sandboxed_api/vars.h +++ b/sandboxed_api/vars.h @@ -15,6 +15,7 @@ #ifndef SANDBOXED_API_VARS_H_ #define SANDBOXED_API_VARS_H_ +// IWYU pragma: begin_exports #include "sandboxed_api/var_array.h" #include "sandboxed_api/var_int.h" #include "sandboxed_api/var_lenval.h" @@ -22,5 +23,6 @@ #include "sandboxed_api/var_ptr.h" #include "sandboxed_api/var_struct.h" #include "sandboxed_api/var_void.h" +// IWYU pragma: end_exports #endif // SANDBOXED_API_VARS_H_