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/Drivers.cpp | |
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/Drivers.cpp')
-rw-r--r-- | src/Drivers.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Drivers.cpp b/src/Drivers.cpp index 6de2459..94efd14 100644 --- a/src/Drivers.cpp +++ b/src/Drivers.cpp @@ -12,6 +12,7 @@ #include <functional> #include <utility> +#include <variant> namespace patchage { |