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.
This commit is contained in:
parent
ee52133e05
commit
0d9ce00257
|
|
@ -2,10 +2,10 @@
|
|||
#define OSMPBF_H
|
||||
|
||||
// this describes the low-level blob storage
|
||||
#include <osmpbf/fileformat.pb.h>
|
||||
#include <osmpbf/fileformat.pb.h> // IWYU pragma: export
|
||||
|
||||
// this describes the high-level OSM objects
|
||||
#include <osmpbf/osmformat.pb.h>
|
||||
#include <osmpbf/osmformat.pb.h> // IWYU pragma: export
|
||||
|
||||
#define OSMPBF_VERSION "1.3.0"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue