Tagged Questions
5
votes
3answers
267 views
Should a standard include header be specified in each file or as a compiler parameter?
I've got a file such as this:
#ifndef STDINCLUDE
#define STDINCLUDE
#include <memory>
#include <stdexcept>
#endif
I want this file to be included in every header file, because I use ...