Skip to content

Commit

Permalink
Merge pull request gridcoin-community#1031 from tomasbrod/staging-f
Browse files Browse the repository at this point in the history
 Adjustments to compile code.
  • Loading branch information
denravonska authored Mar 23, 2018
2 parents 72efb5d + 52b6b38 commit f5c8161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/qt/votingdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,7 @@ class VotingChartDialog
QLabel *question_;
QLabel *url_;
#ifdef QT_CHARTS_LIB
QTCHARTS_USE_NAMESPACE;
QChart *chart_;
QtCharts::QChart *chart_;
#endif
QTableWidget *answerTable_;
QStringList answerTableHeader;
Expand Down
2 changes: 1 addition & 1 deletion src/sync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static void push_lock(void* c, const CLockLocation& locklocation, bool fTry)

std::lock_guard<std::mutex> lock(lockdata.dd_mutex);

lockstack->push_back(std::make_pair(c, locklocation))
lockstack->push_back(std::make_pair(c, locklocation));

for (const std::pair<void*, CLockLocation> & i : (*lockstack)) {
if (i.first == c)
Expand Down

0 comments on commit f5c8161

Please sign in to comment.