Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ブーストライブラリを含め、使用に問題があります。
#include <boost/dynamic_bitset.hpp>
そして、エラーが発生します: boost/dynamic_bitset.hpp: No such file or directory I have a boost folder inside where my project is...どうすれば修正できますか? ありがとう
プロジェクト内にフォルダーがある場合はboost、コンパイラーにヘッダー ファイルのそのフォルダーを調べるように指示するだけでよい場合があります。
boost
gcc/g++ では、これは-I</path/to/headers>オプション (角かっこなし) で実行できます。
-I</path/to/headers>
他のコンパイラは、おそらく異なるフラグを使用して同じように動作し-Iます。
-I