Prevent standard functions outside of std namespace

前端 未结 5 665
梦如初夏
梦如初夏 2021-01-04 01:51

I am using only header files specific to C++ (e.g. ), however I still get globally-declared functions, and not just functions in the std

5条回答
  •  离开以前
    2021-01-04 02:23

    The standard explicitly permits headers to bring names of C standard functions to the global namespace.

提交回复
热议问题