diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-20 22:09:32 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-20 22:09:32 +0200 |
| commit | 86a80bce70eac4c35bf937be3e8da8837bf69d5c (patch) | |
| tree | 3480b69c62e1dd2e2d4d052a98081c56861e56d2 | |
| parent | 4c8cc9e99678a4095772f283ffaaa1d6bd8aaf67 (diff) | |
Move a bind.hpp include out of a header.
| -rw-r--r-- | src/asset.h | 1 | ||||
| -rw-r--r-- | test/asset_test.cc | 4 | ||||
| -rw-r--r-- | test/markers_test.cc | 6 |
3 files changed, 7 insertions, 4 deletions
diff --git a/src/asset.h b/src/asset.h index b6ab8fd2..e2052d8a 100644 --- a/src/asset.h +++ b/src/asset.h @@ -43,7 +43,6 @@ #include "pkl.h" #include <boost/filesystem.hpp> #include <boost/function.hpp> -#include <boost/bind.hpp> #include <boost/optional.hpp> namespace xmlpp { diff --git a/test/asset_test.cc b/test/asset_test.cc index e493fa8e..13f4773e 100644 --- a/test/asset_test.cc +++ b/test/asset_test.cc @@ -31,8 +31,10 @@ files in the program, then also delete it here. */ -#include <boost/test/unit_test.hpp> + #include "asset.h" +#include <boost/bind.hpp> +#include <boost/test/unit_test.hpp> using std::string; using boost::shared_ptr; diff --git a/test/markers_test.cc b/test/markers_test.cc index 813736de..f42f33c5 100644 --- a/test/markers_test.cc +++ b/test/markers_test.cc @@ -31,11 +31,13 @@ files in the program, then also delete it here. */ + +#include <boost/bind.hpp> +#include <boost/shared_ptr.hpp> +#include <boost/test/unit_test.hpp> #include "cpl.h" #include "reel.h" #include "reel_markers_asset.h" -#include <boost/shared_ptr.hpp> -#include <boost/test/unit_test.hpp> using std::string; using boost::shared_ptr; |
