diff options
author | Bhargava Shastry <bshastry@sect.tu-berlin.de> | 2018-10-15 23:14:22 +0800 |
---|---|---|
committer | Bhargava Shastry <bshastry@sect.tu-berlin.de> | 2018-10-15 23:14:22 +0800 |
commit | 55d91d5f9cdc176c771b6038948d5dacba383e34 (patch) | |
tree | 6080ec17a2699551e20af6d33f73459a4341f43a | |
parent | 238494752192a2c834eb8913b244671afb48d693 (diff) | |
download | dexon-solidity-55d91d5f9cdc176c771b6038948d5dacba383e34.tar.gz dexon-solidity-55d91d5f9cdc176c771b6038948d5dacba383e34.tar.zst dexon-solidity-55d91d5f9cdc176c771b6038948d5dacba383e34.zip |
Bug fix: Add missing include in test/Options.h; otherwise compiler does not recognise the boost object that Options subclasses
-rw-r--r-- | test/Options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Options.h b/test/Options.h index 9bc69876..cbaa0dd1 100644 --- a/test/Options.h +++ b/test/Options.h @@ -24,7 +24,7 @@ #include <boost/test/unit_test.hpp> #include <boost/filesystem.hpp> #include <boost/version.hpp> - +#include <boost/core/noncopyable.hpp> #include <functional> namespace dev |