2015-01-01から1ヶ月間の記事一覧
以下のコードはVisual Studio 2013のデフォルト設定ではエラーとなる。 // ./a/func.hpp void func_a(); // ./b/func.hpp void func_b(); // ./a/func.cpp #include <iostream> #include "func_a.hpp" void func_a() { cout << "a" << endl; } // ./b/func.cpp #includ</iostream>…