diff options
author | chriseth <chris@ethereum.org> | 2018-10-16 00:07:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 00:07:13 +0800 |
commit | 8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f (patch) | |
tree | 6080ec17a2699551e20af6d33f73459a4341f43a | |
parent | 238494752192a2c834eb8913b244671afb48d693 (diff) | |
parent | 55d91d5f9cdc176c771b6038948d5dacba383e34 (diff) | |
download | dexon-solidity-8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f.tar dexon-solidity-8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f.tar.gz dexon-solidity-8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f.tar.bz2 dexon-solidity-8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f.tar.lz dexon-solidity-8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f.tar.xz dexon-solidity-8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f.tar.zst dexon-solidity-8a9f5262acbc38bf2ed87a7ad48b27d0b53bea4f.zip |
Merge pull request #5223 from bshastry/testoptions-bugfix
Bug fix: Add missing include in test/Options.h
-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 |