diff options
author | David Robillard <d@drobilla.net> | 2024-07-13 12:39:56 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-07-13 12:39:56 -0400 |
commit | 943819c40ab43d5202cd9af75cd403447210ad0b (patch) | |
tree | 859b65aa24c52996618a682053a9e057f8a95693 /src/Configuration.hpp | |
parent | c283128e50a5b9235055a296dabf04ac88d3cbae (diff) | |
download | patchage-943819c40ab43d5202cd9af75cd403447210ad0b.tar.gz patchage-943819c40ab43d5202cd9af75cd403447210ad0b.tar.bz2 patchage-943819c40ab43d5202cd9af75cd403447210ad0b.zip |
Add missing includes
According to include-what-you-use, anyway. Most of these seem
questionable/unnecessary, but since the whole point here is to avoid wasting
time doing manually what machines can do, just do what the tool says to keep
the checks clean even if it's suboptimal.
Diffstat (limited to 'src/Configuration.hpp')
-rw-r--r-- | src/Configuration.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Configuration.hpp b/src/Configuration.hpp index a92d4af..4afbc4d 100644 --- a/src/Configuration.hpp +++ b/src/Configuration.hpp @@ -13,6 +13,7 @@ #include <optional> #include <string> #include <tuple> +#include <variant> namespace patchage { |