summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-07-19 10:59:08 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-07-19 10:59:08 +0200
commita3ecbed8af2478a7b32ef0c6bb7fb26c9701569a (patch)
tree5ac655f1ea73240b15095e7748c2afbf648ff093 /ACE/ace/OS_NS_stdlib.h
parent335e4a12ade8196a5e0bc8b7efa9d9f038f5883a (diff)
downloadATCD-a3ecbed8af2478a7b32ef0c6bb7fb26c9701569a.tar.gz
Make use of std now that we have C++11
* ACE/ace/OS_NS_math.h: * ACE/ace/OS_NS_stdio.h: * ACE/ace/OS_NS_stdio.inl: * ACE/ace/OS_NS_stdlib.h: * ACE/ace/OS_NS_wchar.inl:
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.h')
-rw-r--r--ACE/ace/OS_NS_stdlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/OS_NS_stdlib.h b/ACE/ace/OS_NS_stdlib.h
index ab0f86884b1..86d280b3616 100644
--- a/ACE/ace/OS_NS_stdlib.h
+++ b/ACE/ace/OS_NS_stdlib.h
@@ -58,7 +58,7 @@ inline ACE_INT64 ace_strtoll_helper (const char *s, char **ptr, int base)
return strtoll (s, ptr, base);
# undef strtoll
# else
- return ACE_STD_NAMESPACE::strtoll (s, ptr, base);
+ return std::strtoll (s, ptr, base);
# endif /* strtoll */
}
#endif /* !ACE_LACKS_STRTOLL && !ACE_STRTOLL_EQUIVALENT */
@@ -70,7 +70,7 @@ inline ACE_INT64 ace_strtoull_helper (const char *s, char **ptr, int base)
return strtoull (s, ptr, base);
# undef strtoull
# else
- return ACE_STD_NAMESPACE::strtoull (s, ptr, base);
+ return std::strtoull (s, ptr, base);
# endif /* strtoull */
}
#endif /* !ACE_LACKS_STRTOULL && !ACE_STRTOULL_EQUIVALENT */