diff options
author | David Robillard <d@drobilla.net> | 2024-07-13 12:41:21 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-07-13 12:41:47 -0400 |
commit | bbdab98ed282291b6e29a944359c360c9cca127e (patch) | |
tree | e0e891790fae597c4979bc6b3efd8d3d6913d2a9 /src/server/GraphImpl.hpp | |
parent | ece338095efe1d5aa2f9b3b6e85ba9b2cbfb1ab4 (diff) | |
download | ingen-bbdab98ed282291b6e29a944359c360c9cca127e.tar.gz ingen-bbdab98ed282291b6e29a944359c360c9cca127e.tar.bz2 ingen-bbdab98ed282291b6e29a944359c360c9cca127e.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/server/GraphImpl.hpp')
-rw-r--r-- | src/server/GraphImpl.hpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/server/GraphImpl.hpp b/src/server/GraphImpl.hpp index c5f978fb..7c3a56df 100644 --- a/src/server/GraphImpl.hpp +++ b/src/server/GraphImpl.hpp @@ -26,6 +26,7 @@ #include "lv2/urid/urid.h" #include "raul/Maid.hpp" +#include <boost/intrusive/options.hpp> #include <boost/intrusive/slist.hpp> #include <cassert> @@ -39,10 +40,6 @@ namespace raul { class Symbol; } // namespace raul -namespace boost::intrusive { -template <bool Enabled> struct constant_time_size; -} // namespace boost::intrusive - namespace ingen::server { class ArcImpl; |