Skip to content

Commit

Permalink
Refs #11110. Fix compiler error and warning on AppleClang
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumsteve committed Feb 17, 2015
1 parent 0dbbd4e commit 029132c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/src/InternetHelper.cpp
Expand Up @@ -134,7 +134,7 @@ int InternetHelper::sendRequestAndProcess(HTTPClientSession &session,
std::ostream &responseStream) {
// create a request
this->createRequest(uri);
session.sendRequest(*m_request) << m_body;
session.sendRequest(*m_request) << m_body.rdbuf();

HTTPResponse res;
std::istream &rs = session.receiveResponse(res);
Expand Down
Expand Up @@ -275,7 +275,7 @@ namespace CustomInterfaces
}

// If we get this far then properties are valid so update mini plots
if((prop == m_properties["PreviewSpec"]))
if(prop == m_properties["PreviewSpec"])
updateMiniPlots();
}

Expand Down

0 comments on commit 029132c

Please sign in to comment.