T
tuko
Hello.
Do you know if there is any standard STL header guard for
vectors, lists, maps e.t.c?
I would like to write code like that
#ifndef STL_VECTOR_
#error "please include stl vector"
#endif
std::vector<double> foo;
I am searching an elegant way to prevent a flood of
compilation errors.
Many thanks.
Tuko
Do you know if there is any standard STL header guard for
vectors, lists, maps e.t.c?
I would like to write code like that
#ifndef STL_VECTOR_
#error "please include stl vector"
#endif
std::vector<double> foo;
I am searching an elegant way to prevent a flood of
compilation errors.
Many thanks.
Tuko