What is the purpose of features.h header?

前端 未结 4 1520
北海茫月
北海茫月 2020-12-29 08:15

What is the purpose of the features.h header? Why and when can it be used in my code?

Does it define source features supported by the system? Or does i

4条回答
  •  情深已故
    2020-12-29 08:48

    From features.h File Reference

    Defines on whether to include algorithm variants. Less variants reduce executable size and compile time. This file is a GNU parallel extension to the Standard C++ Library.

    So this file will include some algorithm listed in the reference page.

提交回复
热议问题