diff options
author | maximius <none@none> | 2009-10-17 16:20:24 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-17 16:20:24 -0700 |
commit | 3f338cc1c328c7280957583b50598292cd8fb64b (patch) | |
tree | ca209c2cd024e3902b7844b3224bceff7c5bb570 /dep/ACE_wrappers/ace/SString.cpp | |
parent | e585187b248f48b3c6e9247b49fa07c6565d65e5 (diff) |
*Massive cleanup redux.
--HG--
branch : trunk
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_++; |