Enabling <> for headers in g++
I'm having an issue gett开发者_StackOverflowing some code to work. Is there a way to enable headers to be included like so
#include <boost/asio.hpp>
Instead of
#include "boost/asio.hpp"
Pass the directory to be searched for that path after -I
on the command line to gcc.
精彩评论