summaryrefslogtreecommitdiff
path: root/src/client/Client.cpp
diff options
context:
space:
mode:
authorjacob1 <jfu614@gmail.com>2012-12-06 17:34:32 (GMT)
committer jacob1 <jfu614@gmail.com>2012-12-06 17:34:32 (GMT)
commite5a284a2bafd1e48525b3b3c4fbfe2464cce7c68 (patch)
tree0402ab1a3a03d8b6f90826318eb1416fb3ee5155 /src/client/Client.cpp
parent122599763ef9827d7aadc0fe0295c2fbc96e82ab (diff)
downloadpowder-e5a284a2bafd1e48525b3b3c4fbfe2464cce7c68.zip
powder-e5a284a2bafd1e48525b3b3c4fbfe2464cce7c68.tar.gz
fix compiling warnings / error
Diffstat (limited to 'src/client/Client.cpp')
-rw-r--r--src/client/Client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/Client.cpp b/src/client/Client.cpp
index fb14050..cf830a8 100644
--- a/src/client/Client.cpp
+++ b/src/client/Client.cpp
@@ -1612,7 +1612,7 @@ std::vector<std::pair<std::string, int> > * Client::GetTags(int start, int count
{
json::Number tagCount = tagsArray[j]["Count"];
json::String tag = tagsArray[j]["Tag"];
- tagArray->push_back(std::pair<std::string, int>(tag.Value(), tagCount.Value()));
+ tagArray->push_back(std::pair<std::string, int>(tag.Value(), (int)tagCount.Value()));
}
}
catch (json::Exception &e)