summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/Util.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-12-21 11:12:14 -0500
committerBernard Normier <bernard@zeroc.com>2007-12-21 11:12:14 -0500
commit08ec7524df324e627bbb8d93c509f0d90badbe3b (patch)
treea640ae99a5e35b210352150feef4f71832b265c5 /cpp/src/IceGrid/Util.h
parentMerge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff)
downloadice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.bz2
ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.xz
ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.zip
IceUtil cleanup (first commit)
Diffstat (limited to 'cpp/src/IceGrid/Util.h')
-rw-r--r--cpp/src/IceGrid/Util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/Util.h b/cpp/src/IceGrid/Util.h
index d1386202df7..418982bd6ea 100644
--- a/cpp/src/IceGrid/Util.h
+++ b/cpp/src/IceGrid/Util.h
@@ -27,7 +27,7 @@ struct RandomNumberGenerator : public std::unary_function<ptrdiff_t, ptrdiff_t>
{
ptrdiff_t operator()(ptrdiff_t d)
{
- return IceUtil::random(static_cast<int>(d));
+ return IceUtilInternal::random(static_cast<int>(d));
}
};
@@ -110,7 +110,7 @@ inline getMatchingKeys(const T& m, const std::string& expression)
std::vector<std::string> keys;
for(typename T::const_iterator p = m.begin(); p != m.end(); ++p)
{
- if(expression.empty() || IceUtil::match(p->first, expression, true))
+ if(expression.empty() || IceUtilInternal::match(p->first, expression, true))
{
keys.push_back(p->first);
}