diff options
author | chriseth <chris@ethereum.org> | 2018-10-16 01:51:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 01:51:25 +0800 |
commit | 036929aba11268eafb602394af8b212fbe56ae6c (patch) | |
tree | 0edc9761007b16e65a8cec343094d5adb4ea4f16 /test | |
parent | 8677d9276a2188e0425e7abcad11749bdeee3586 (diff) | |
parent | 3d4e5f30e1696bee8482058b5ec4adb51f9f1387 (diff) | |
download | dexon-solidity-036929aba11268eafb602394af8b212fbe56ae6c.tar.gz dexon-solidity-036929aba11268eafb602394af8b212fbe56ae6c.tar.zst dexon-solidity-036929aba11268eafb602394af8b212fbe56ae6c.zip |
Merge pull request #5226 from ethereum/chriseth-patch-3
Correct include path
Diffstat (limited to 'test')
-rw-r--r-- | test/Options.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Options.h b/test/Options.h index cbaa0dd1..0e8a51da 100644 --- a/test/Options.h +++ b/test/Options.h @@ -24,7 +24,8 @@ #include <boost/test/unit_test.hpp> #include <boost/filesystem.hpp> #include <boost/version.hpp> -#include <boost/core/noncopyable.hpp> +#include <boost/noncopyable.hpp> + #include <functional> namespace dev |