Fix coding style issues.

This commit is contained in:
Victor Zverovich 2014-06-10 09:17:24 -07:00
parent 11f76fea94
commit e2cbee77b8

View File

@ -25,8 +25,8 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef FMT_POSIX_H
#define FMT_POSIX_H
#ifndef FMT_POSIX_H_
#define FMT_POSIX_H_
#include <errno.h>
#include <fcntl.h> // for O_RDONLY
@ -293,7 +293,6 @@ public:
// this File object from the file.
BufferedFile fdopen(const char *mode);
};
}
#if !FMT_USE_RVALUE_REFERENCES
@ -304,4 +303,4 @@ inline fmt::File &move(fmt::File &f) { return f; }
}
#endif
#endif // FMT_POSIX_H
#endif // FMT_POSIX_H_