libdballe 9.13
dballe_pch.h
1// List of headers to precompile.
2// See
3// https://github.com/mesonbuild/meson/blob/master/docs/markdown/Precompiled-headers.md
4//
5// Hint: git grep -h '#include <'| sort | uniq -c | sort -n
6//
7// If you wish to compile your project without precompiled headers, you can
8// change the value of the pch option by passing -Db_pch=false argument to
9// Meson at configure time or later with meson configure.
10//
11// Note that adding a header here will have it always included when compiling.
12// Turn off precompiled headers to check include consistency.
13//
14// Note also that changing one of the included headers will trigger a rebuild
15// of everything.
16
17#include <algorithm>
18#include <cassert>
19#include <cctype>
20#include <cmath>
21#include <cstdarg>
22#include <cstdio>
23#include <cstdlib>
24#include <cstring>
25#include <functional>
26#include <iomanip>
27#include <iosfwd>
28#include <iostream>
29#include <limits>
30#include <map>
31#include <memory>
32#include <ostream>
33#include <set>
34#include <sstream>
35#include <stdexcept>
36#include <string>
37#include <sys/types.h>
38#include <unistd.h>
39#include <unordered_set>
40#include <vector>
41#include <wreport/bulletin.h>
42#include <wreport/codetables.h>
43#include <wreport/conv.h>
44#include <wreport/error.h>
45#include <wreport/notes.h>
46#include <wreport/subset.h>
47#include <wreport/utils/string.h>
48#include <wreport/utils/sys.h>
49#include <wreport/var.h>
50#include <wreport/varinfo.h>
51#include <wreport/vartable.h>