Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/cplusplus/158.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C++ `__gnu#U cxx::libc中的临时#U缓冲区++;?_C++_C++11_Stl_Libc++ - Fatal编程技术网

C++ `__gnu#U cxx::libc中的临时#U缓冲区++;?

C++ `__gnu#U cxx::libc中的临时#U缓冲区++;?,c++,c++11,stl,libc++,C++,C++11,Stl,Libc++,(GNU GCC)libstdc++STL的我的代码: #include <ext/memory> using __gnu_cxx::temporary_buffer; #包括 使用_gnu_cxx::临时缓冲区; 在(LLVM)libc++中是否有一个等价物?在哪里 (一个相关的问题是,)libc++没有实现许多libstdc++库扩展,也没有临时缓冲区 ext/中唯一存在的文件是hash\u map和hash\u set(以及\uu hash)如果你展示一下你使用它的目的,也

(GNU GCC)libstdc++STL的我的代码:

#include <ext/memory>
using __gnu_cxx::temporary_buffer;
#包括
使用_gnu_cxx::临时缓冲区;
在(LLVM)libc++中是否有一个等价物?在哪里


(一个相关的问题是,)

libc++没有实现许多libstdc++库扩展,也没有
临时缓冲区


ext/
中唯一存在的文件是
hash\u map
hash\u set
(以及
\uu hash

如果你展示一下你使用它的目的,也许可以?我建议避免扩展,避免使用
std::get\u temporary\u buffer()
,只需使用
std::vector
,我是否可以将您的回答解释为“不,没有等效项,请使用其他类似于
std::vector
”的内容?还是你说的不一样?