diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-08-21 13:14:20 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-08-21 13:14:20 +0100 |
commit | 7d0710e2df6063dc81158dc1f8b794751e7167ff (patch) | |
tree | 97167fe44bc6bc46a0dbb678555e36f9c1bee8b8 /lib | |
parent | Beginnings of network editor (diff) | |
download | ilt-7d0710e2df6063dc81158dc1f8b794751e7167ff.tar.bz2 ilt-7d0710e2df6063dc81158dc1f8b794751e7167ff.tar.xz ilt-7d0710e2df6063dc81158dc1f8b794751e7167ff.zip |
Add missing includes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/collection.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/collection.hpp b/lib/collection.hpp index 6e05824..4a54124 100644 --- a/lib/collection.hpp +++ b/lib/collection.hpp @@ -1,8 +1,10 @@ #pragma once #include <algorithm> +#include <functional> #include <memory> #include <type_traits> +#include <vector> template<typename Object, bool shared = true> class Collection { public: |