summaryrefslogtreecommitdiff
path: root/ACE/ace/ACE.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-09-17 07:52:52 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-09-17 07:52:52 +0000
commite60a5d9d9b55bcb774031e36f9ea96a5a8a6045d (patch)
tree6e47dd26396eea92224f8ecd241b3c96f7531c42 /ACE/ace/ACE.inl
parent447b29bb6ee55ceb53aca914041c801baf05baa9 (diff)
downloadATCD-e60a5d9d9b55bcb774031e36f9ea96a5a8a6045d.tar.gz
Removed trailing whitespaces
Diffstat (limited to 'ACE/ace/ACE.inl')
-rw-r--r--ACE/ace/ACE.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/ACE.inl b/ACE/ace/ACE.inl
index 033cef78f55..c114deb90ee 100644
--- a/ACE/ace/ACE.inl
+++ b/ACE/ace/ACE.inl
@@ -272,7 +272,7 @@ ACE::strdelete (wchar_t *s)
ACE_INLINE bool
ACE::isdotdir (const char *s)
{
- return (s[0] == '.' &&
+ return (s[0] == '.' &&
((s[1] == 0) || (s[1] == '.' && s[2] == 0)));
}
@@ -280,7 +280,7 @@ ACE::isdotdir (const char *s)
ACE_INLINE bool
ACE::isdotdir (const wchar_t *s)
{
- return (s[0] == ACE_TEXT ('.') &&
+ return (s[0] == ACE_TEXT ('.') &&
((s[1] == 0) || (s[1] == ACE_TEXT ('.') && s[2] == 0)));
}
#endif /* ACE_HAS_WCHAR */