nourani / ScientificQuantities

A C++11 template class to deal with units inside the program
BSD 3-Clause "New" or "Revised" License
11 stars 2 forks source link

Included <ostream> as ScientificQuantities.hpp depends on it. #4

Closed crayzeewulf closed 10 years ago

crayzeewulf commented 10 years ago

The header ScientificQuantities.hpp now includes <ostream> as the code depends on std::ostream to be available. Including this header ensures that users of ScientificQuantities.hpp do not have to explicitly include <ostream> or <iostream> before it. In other words, this makes ScientificQuantities.hpp self-sufficient.

nourani commented 10 years ago

Of course! thanks