aboutsummaryrefslogtreecommitdiff
path: root/dep/ACE_wrappers/ace/SString.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dep/ACE_wrappers/ace/SString.cpp')
-rw-r--r--dep/ACE_wrappers/ace/SString.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dep/ACE_wrappers/ace/SString.cpp b/dep/ACE_wrappers/ace/SString.cpp
index d540d67fde6..6d68f673bb0 100644
--- a/dep/ACE_wrappers/ace/SString.cpp
+++ b/dep/ACE_wrappers/ace/SString.cpp
@@ -446,7 +446,7 @@ ACE_Tokenizer::next (void)
ACE_TCHAR *next_token;
// Skip all leading delimiters.
- for (; ; )
+ for (;;)
{
// Check for end of string.
if (buffer_[index_] == '\0')
@@ -501,7 +501,7 @@ ACE_Tokenizer::next (void)
}
// Step through finding the next delimiter or EOS.
- for (; ; )
+ for (;;)
{
// Advance pointer.
index_++;