Skip to content

Commit

Permalink
fix missing include statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Han Liu committed Feb 17, 2018
1 parent df125a8 commit c859f38
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/exchanges/binance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <ctime>
#include <cctype>
#include <cstdlib>
#include <iomanip>

namespace Binance
{
Expand Down
2 changes: 2 additions & 0 deletions src/exchanges/bittrex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#include <algorithm>
#include <ctime>
#include <cctype>
#include <iomanip>
#include <sstream>

namespace Bittrex {
static json_t* authRequest(Parameters &, std::string, std::string);
Expand Down
1 change: 1 addition & 0 deletions src/exchanges/poloniex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <algorithm>
#include <ctime>
#include <cctype>
#include <iomanip>

namespace Poloniex {

Expand Down

0 comments on commit c859f38

Please sign in to comment.