diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-24 22:13:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-24 22:13:53 +0100 |
| commit | 63ea6b6c5ee64f8ee067c2b488d004b6dfe363e0 (patch) | |
| tree | d248762556466fd076cfd20f2e6aa1d5d9544184 /test | |
| parent | 977b36672892b14de4ecb68e98415c64946e8a93 (diff) | |
Use boost::signals2; fix bugs with x-thread signalling.
Diffstat (limited to 'test')
| -rw-r--r-- | test/test.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/test.cc b/test/test.cc index 55505648d..2eaea1624 100644 --- a/test/test.cc +++ b/test/test.cc @@ -42,8 +42,12 @@ #define BOOST_TEST_MODULE dvdomatic_test #include <boost/test/unit_test.hpp> -using namespace std; -using namespace boost; +using std::string; +using std::list; +using std::stringstream; +using std::vector; +using boost::shared_ptr; +using boost::thread; void setup_test_config () |
