diff --git a/image.cpp b/image.cpp index 0fbccb5b..d6401807 100644 --- a/image.cpp +++ b/image.cpp @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with libgim. If not, see . * - * Copyright 2011 Danny Robson + * Copyright 2011-2014 Danny Robson */ @@ -26,6 +26,7 @@ #include +//----------------------------------------------------------------------------- static void write_netpbm (const uint8_t *restrict pixels, size_t width, @@ -56,6 +57,8 @@ write_netpbm (const uint8_t *restrict pixels, } } + +//----------------------------------------------------------------------------- void util::pgm::write (const uint8_t *restrict pixels, size_t width, @@ -68,6 +71,7 @@ util::pgm::write (const uint8_t *restrict pixels, } +//----------------------------------------------------------------------------- void util::ppm::write (const uint8_t *restrict pixels, size_t width, diff --git a/image.hpp b/image.hpp index 06271d0f..4c62086e 100644 --- a/image.hpp +++ b/image.hpp @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with libgim. If not, see . * - * Copyright 2011 Danny Robson + * Copyright 2011-2014 Danny Robson */ #ifndef __UTIL_IMAGE_HPP