summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-15 18:01:56 +0100
committerDavid Robillard <d@drobilla.net>2020-12-15 18:01:56 +0100
commitf434ff304bb23d7f124e2467a59d3fe30f56b28f (patch)
tree7798908432e672c249068deeed9fbe9c4b890596
parentd00bc4de5b876e911a6a32590a340e8b48594479 (diff)
downloadpatchage-f434ff304bb23d7f124e2467a59d3fe30f56b28f.tar.gz
patchage-f434ff304bb23d7f124e2467a59d3fe30f56b28f.tar.bz2
patchage-f434ff304bb23d7f124e2467a59d3fe30f56b28f.zip
Refine include configuration for consistency with other projects
-rw-r--r--.clant.json6
-rw-r--r--src/Canvas.cpp3
2 files changed, 8 insertions, 1 deletions
diff --git a/.clant.json b/.clant.json
index 53ac5a9..d178369 100644
--- a/.clant.json
+++ b/.clant.json
@@ -1,4 +1,8 @@
{
"version": "1.0.0",
- "mapping_files": ["boost-all.imp", ".includes.imp"]
+ "mapping_files": [
+ ".includes.imp",
+ "boost-1.64-all-private.imp",
+ "boost-1.64-all.imp"
+ ]
}
diff --git a/src/Canvas.cpp b/src/Canvas.cpp
index 1de5269..423be7d 100644
--- a/src/Canvas.cpp
+++ b/src/Canvas.cpp
@@ -42,7 +42,10 @@ PATCHAGE_DISABLE_FMT_WARNINGS
#include <fmt/ostream.h>
PATCHAGE_RESTORE_WARNINGS
+#include <boost/optional/optional.hpp>
#include <gdk/gdkkeysyms.h>
+#include <sigc++/functors/mem_fun.h>
+#include <sigc++/signal.h>
#include <cassert>
#include <iosfwd>