nothrow?

Ian Lance Taylor iant@google.com
Mon Mar 9 20:18:00 GMT 2009


Michael Sullivan <msulli1355@gmail.com> writes:

> On Mon, 2009-03-09 at 12:11 -0700, Ian Lance Taylor wrote:
>> Michael Sullivan <msulli1355@gmail.com> writes:
>> 
>> > # 1 "./new" 1 3
>> 
>> Thanks for the full report.  That line shows your problem.  You have a
>> file named "new" in your working directory.  The <string> header file is
>> (indirectly) doing #include <new>.  That is picking up the <new> in your
>> working directory rather than the <new> from libstdc++.
>> 
>> 
>> Normally gcc will not search for #include <> files in the current
>> working directory, so normally this issue should not occur.  The -v
>> output you sent shows this:
>> 
>> #include "..." search starts here:
>> #include <...> search starts here:
>>  /usr/include/SDL
>>  .
>> 
>> The directory "." is not normally on that list.  You didn't use "-I ."
>> on the command line.  Have you by any chance set the CPLUS_INCLUDE_PATH
>> environment variable?
>> 
>> Ian
>
> No.  Should I?

No, you shouldn't.  However, I have no other explanation for why "."  is
in the list of directories being searched for #include <> header files.

Ian



More information about the Gcc-help mailing list