Skip to content

Commit

Permalink
Kill warning in RemoteJobManager.cpp
Browse files Browse the repository at this point in the history
Refs #7994
  • Loading branch information
martyngigg committed Sep 30, 2013
1 parent 3f745d6 commit b6f39c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/src/RemoteJobManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ std::istream & RemoteJobManager::httpPost(const std::string &path, const PostDat

postBody << finalBoundaryLine;

req.setContentLength( postBody.str().size());
req.setContentLength( static_cast<int>(postBody.str().size()));

std::ostream &postStream = m_session->sendRequest( req);

Expand Down

0 comments on commit b6f39c2

Please sign in to comment.