mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
Merge topic 'cmuvprocesschain-external-stream-fd'
b65d54e876cmUVStreambuf: Update URL for example code0878306386cmUVStream: Add cmUVStreamRead() functionb8fd273ed7cmUVProcessChain: Return output and error streams as file descriptorsec81d40be4cmUVPipeIStream: Add cmUVPipeIStream3b6c5efc08cm::append: Add support for std::basic_string on SPARC/SunPro Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8559
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
|
||||
#if defined(__SUNPRO_CC) && defined(__sparc)
|
||||
# include <list>
|
||||
# include <string>
|
||||
# include <vector>
|
||||
#endif
|
||||
|
||||
@@ -67,11 +68,15 @@ namespace cm {
|
||||
APPEND_TWO(C1, C2) \
|
||||
APPEND_TWO(C2, C1)
|
||||
|
||||
// For now, manage only support for std::vector and std::list.
|
||||
// Other sequential container support can be added if needed.
|
||||
// For now, manage only support for std::vector, std::list, and
|
||||
// std::basic_string. Other sequential container support can be added if
|
||||
// needed.
|
||||
APPEND(std::vector)
|
||||
APPEND(std::list)
|
||||
APPEND(std::basic_string)
|
||||
APPEND_MIX(std::vector, std::list)
|
||||
APPEND_MIX(std::vector, std::basic_string)
|
||||
APPEND_MIX(std::list, std::basic_string)
|
||||
|
||||
# undef APPEND
|
||||
# undef APPEND_MIX
|
||||
|
||||
Reference in New Issue
Block a user