Fixing #includes <> for GCC (Code::Blocks)

前端 未结 4 773
半阙折子戏
半阙折子戏 2021-01-13 17:58

I am working with some code that was written for a different compiler/linker, and it is including files like this:

#include 
         


        
4条回答
  •  没有蜡笔的小新
    2021-01-13 18:25

    Please remember that one usually uses #include directive to include files from standard include catalogues. These catalogues defined as environment variable or in command line of compiler. And #include "filename" to include header file from current directory or any path relative to current directory.

    without going through and doing it all manually?

    You may use search&replace feature of your favourite editor

提交回复
热议问题