Rokiのチラ裏

学生による学習のログ

2016-06-14から1日間の記事一覧

GCCインデントミスの警告機能

$ cat test.cpp int main() { auto f=[]{}; auto b=[]{}; if(true) f(); b(); } $ g++ -std=c++0x -Wmisleading-indentation test.cpp test.cpp: 関数 ‘int main()’ 内: test.cpp:5:2: 警告: this ‘if’ clause does not guard... [-Wmisleading-indentation]…

decltype(auto)

C++

仕事先の休憩スペースにて休憩時間中に投稿。 decltype autoの提案時、僕はC++に触れていなかったため、実装までの過程と脈略が分からず、その必要性がハッキリしなかったのだが、様々な資料を参考に、その必要性を学んだ。そのログをここに残してみる。 結…