遇到一個compile error
https://stackoverflow.com/questions/17264067/chosen-constructor-is-explicit-in
-copy-initialization-error-with-clang-4-2/17264506
加上了-D_GLIBCXX_DEBUG 不知道為什麼遇到類似以上這個error 用clang才會遇到
我寫 const vector<int> v = {};
然而發現
加上這flag後
我寫std::vector 他其實是用到 std::__debug::vector
但仔細想想 .... 他怎麼做到的?
以下是我以為做得到的寫法
namespace AA
{
int a = 1;
}
namespace AA
{
namespace BB
{
int a = 2;
}
}
namespace AA = AA::BB;
int main() {
std::cout<<AA::a<<std::endl; //希望能印2
return 0;
}
看起來無法成功
有幾個問題
1. 他是怎麼做到std:: 讓他變成走std::__debug?
2. g++跟clang都走進去debug 版本的 vector constructor, 他有冠上explicit, 感覺上
g++也要出問題呀? 其實不太清楚clang跟gcc的關聯, 他們都走同一份實作那為什麼會有
不一樣的compile行為?
我可以解讀說 clang , gcc都是compiler, 但clang底下的stl source code是拿gcc的來
用?
// 23.2.4.1 construct/copy/destroy:
explicit
vector(const _Allocator& __a = _Allocator())
: _Base(__a), _M_guaranteed_capacity(0) { }
3. 一般使用g++ -g 時 我自己的exe 包含了debug symbol, 但不意味著我link的glibc
是debug版? 所以如果我要真正的build一個debug版本的, 就必須要把-D_GLIBCXX_DEBUG
加上去?
還是根本無關....
4. 到底這error 想表達的是什麼 (clang only)
error: chosen constructor is explicit in copy-initialization
const std::vector<int> v={};
改成 const std::vector<int> v{}; 就沒事了
謝謝