How to auto-include all headers in directory

前端 未结 10 3238
被撕碎了的回忆
被撕碎了的回忆 2021-02-20 12:32

I\'m going through exercises of a C++ book. For each exercise I want to minimize the boilerplate code I have to write. I\'ve set up my project a certain way but it doesn\'t seem

10条回答
  •  耶瑟儿~
    2021-02-20 12:53

    sed -i 's/\<\\([eE]\\)[0-9]+\\>/\19999/' main.cpp
    

    Replace 9999 with the required number. There might be better ways.

提交回复
热议问题