aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/serviceFactory.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2012-12-12 15:35:55 +0000
committerVincent Richard <[email protected]>2012-12-12 15:35:55 +0000
commit3a5621c2aa3931be608508d4fadc42c2a09cb251 (patch)
treea39a344cbacdc9524122536ecbf8866e225e8230 /src/net/serviceFactory.cpp
parentDo not re-encode data if it is already encoded (thanks to Mehmet Bozkurt). (diff)
downloadvmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.tar.gz
vmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.zip
Trivial 64-bit warning fixes.
Diffstat (limited to 'src/net/serviceFactory.cpp')
-rw-r--r--src/net/serviceFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/serviceFactory.cpp b/src/net/serviceFactory.cpp
index 71b7efea..3a547bb2 100644
--- a/src/net/serviceFactory.cpp
+++ b/src/net/serviceFactory.cpp
@@ -105,13 +105,13 @@ ref <const serviceFactory::registeredService> serviceFactory::getServiceByProtoc
}
-int serviceFactory::getServiceCount() const
+size_t serviceFactory::getServiceCount() const
{
return (m_services.size());
}
-ref <const serviceFactory::registeredService> serviceFactory::getServiceAt(const int pos) const
+ref <const serviceFactory::registeredService> serviceFactory::getServiceAt(const size_t pos) const
{
return (m_services[pos]);
}