diff options
Diffstat (limited to 'dep/ACE_wrappers/ace/SString.cpp')
-rw-r--r-- | dep/ACE_wrappers/ace/SString.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dep/ACE_wrappers/ace/SString.cpp b/dep/ACE_wrappers/ace/SString.cpp index 9548a4e6f38..d540d67fde6 100644 --- a/dep/ACE_wrappers/ace/SString.cpp +++ b/dep/ACE_wrappers/ace/SString.cpp @@ -19,12 +19,10 @@ #include "ace/SString.inl" #endif /* __ACE_INLINE__ */ - ACE_RCSID (ace, SString, "SString.cpp,v 4.61 2001/03/04 00:55:30 brunsch Exp") - // ************************************************************ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -448,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') @@ -503,7 +501,7 @@ ACE_Tokenizer::next (void) } // Step through finding the next delimiter or EOS. - for (;;) + for (; ; ) { // Advance pointer. index_++; |