summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/Parser.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2008-02-11 12:49:19 -0330
committerDwayne Boone <dwayne@zeroc.com>2008-02-11 12:49:19 -0330
commit3f8195453813a1486f0abcfd2a89067a775a4ac0 (patch)
tree8f30ef2e390b8095b37b68f54cabfc72c3325c0f /cpp/src/IceGrid/Parser.cpp
parentInitialize a couple of bools (diff)
downloadice-3f8195453813a1486f0abcfd2a89067a775a4ac0.tar.bz2
ice-3f8195453813a1486f0abcfd2a89067a775a4ac0.tar.xz
ice-3f8195453813a1486f0abcfd2a89067a775a4ac0.zip
Do ont use stupid in reference to M$
Diffstat (limited to 'cpp/src/IceGrid/Parser.cpp')
-rw-r--r--cpp/src/IceGrid/Parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Parser.cpp b/cpp/src/IceGrid/Parser.cpp
index 61477f85f6a..9ab3f547738 100644
--- a/cpp/src/IceGrid/Parser.cpp
+++ b/cpp/src/IceGrid/Parser.cpp
@@ -2018,7 +2018,7 @@ Parser::getInput(char* buf, int& result, int maxSize)
else
{
#if defined(_MSC_VER) && _MSC_VER < 1500 && !defined(_STLP_MSVC)
- // COMPILERBUG: Stupid Visual C++ defines min and max as macros
+ // COMPILERBUG: Visual C++ defines min and max as macros
result = _MIN(maxSize, static_cast<int>(_commands.length()));
#else
result = min(maxSize, static_cast<int>(_commands.length()));