From 0d9ce002574b6baba915339226c52a5d380e6e2d Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Wed, 27 Nov 2013 10:07:37 +0100 Subject: [PATCH] Add IWYU pragmas. These pragmas are used by the IWYU (Include-What-You-Use) program to find out which header files need to be included in your C/C++ program. The pragmas added tell IWYU that osmpbf.h acts as a "facade" for the other header files. --- include/osmpbf/osmpbf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osmpbf/osmpbf.h b/include/osmpbf/osmpbf.h index 9dd8de1..4d3295c 100644 --- a/include/osmpbf/osmpbf.h +++ b/include/osmpbf/osmpbf.h @@ -2,10 +2,10 @@ #define OSMPBF_H // this describes the low-level blob storage -#include +#include // IWYU pragma: export // this describes the high-level OSM objects -#include +#include // IWYU pragma: export #define OSMPBF_VERSION "1.3.0"