diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-29 21:43:43 +0200 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-30 23:46:08 +0200 |
commit | 8babae3156430f5aa6b804f7c352ffb178097963 (patch) | |
tree | 6c09c50e518c1d6342c06b3890f71043fc0e90b5 /xmrstak/backend/cpu/minethd.hpp | |
parent | 4526840bb6347eaed7d80a807357f969f9c68a40 (diff) | |
download | xmr-stak-8babae3156430f5aa6b804f7c352ffb178097963.zip xmr-stak-8babae3156430f5aa6b804f7c352ffb178097963.tar.gz |
cleanup includes
Diffstat (limited to 'xmrstak/backend/cpu/minethd.hpp')
-rw-r--r-- | xmrstak/backend/cpu/minethd.hpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/xmrstak/backend/cpu/minethd.hpp b/xmrstak/backend/cpu/minethd.hpp index 40383cf..1dcca86 100644 --- a/xmrstak/backend/cpu/minethd.hpp +++ b/xmrstak/backend/cpu/minethd.hpp @@ -1,13 +1,15 @@ #pragma once + +#include "crypto/cryptonight.h" +#include "xmrstak/backend/miner_work.hpp" +#include "xmrstak/backend/iBackend.hpp" +#include "xmrstak/backend/globalStates.hpp" + +#include <iostream> #include <thread> #include <vector> #include <atomic> #include <mutex> -#include "../../crypto/cryptonight.h" -#include "../miner_work.h" -#include "../IBackend.hpp" -#include "../GlobalStates.hpp" -#include <iostream> namespace xmrstak { |