Fix some whitespace

This commit is contained in:
Danny Robson 2012-11-09 15:16:07 +11:00
parent c281f4c507
commit 1fbc37cc63

5
io.hpp
View File

@ -38,7 +38,6 @@ namespace util {
ACCESS_READWRITE = ACCESS_READ | ACCESS_WRITE ACCESS_READWRITE = ACCESS_READ | ACCESS_WRITE
}; };
/// Reads an entire file into memory. Caller frees the result. Guarantees a /// Reads an entire file into memory. Caller frees the result. Guarantees a
/// null trailing byte. /// null trailing byte.
std::unique_ptr<char []> std::unique_ptr<char []>
@ -60,8 +59,7 @@ namespace util {
}; };
class indenter : public std::streambuf class indenter : public std::streambuf {
{
protected: protected:
std::streambuf* m_dest; std::streambuf* m_dest;
bool m_line_start; bool m_line_start;
@ -117,6 +115,7 @@ namespace util {
}; };
#endif #endif
class path_error : public std::runtime_error { class path_error : public std::runtime_error {
public: public:
path_error (const boost::filesystem::path &path): path_error (const boost::filesystem::path &path):