Skip to content

Commit

Permalink
forgot array declarations in main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
CCKRK committed Feb 14, 2018
1 parent 73cc547 commit 6e9a0dc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ int main(int argc, char** argv) {

// Function arrays containing all the exchanges functions
// using the 'typedef' declarations from above.
getQuoteType getQuote[11];
getAvailType getAvail[11];
sendOrderType sendLongOrder[11];
sendOrderType sendShortOrder[11];
isOrderCompleteType isOrderComplete[11];
getActivePosType getActivePos[11];
getLimitPriceType getLimitPrice[11];
std::string dbTableName[11];
getQuoteType getQuote[13];
getAvailType getAvail[13];
sendOrderType sendLongOrder[13];
sendOrderType sendShortOrder[13];
isOrderCompleteType isOrderComplete[13];
getActivePosType getActivePos[13];
getLimitPriceType getLimitPrice[13];
std::string dbTableName[13];


// Adds the exchange functions to the arrays for all the defined exchanges
Expand Down

0 comments on commit 6e9a0dc

Please sign in to comment.