From ebcfcaec212f2e90625e4b9f69afdefa3546afef Mon Sep 17 00:00:00 2001 From: Fabien Spindler Date: Thu, 7 Nov 2024 14:31:12 +0100 Subject: [PATCH] Remove useless code introduced for debug --- modules/io/src/image/private/vpImageIoLibjpeg.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/io/src/image/private/vpImageIoLibjpeg.cpp b/modules/io/src/image/private/vpImageIoLibjpeg.cpp index 52be3ca7b2..5e8fc5a6a4 100644 --- a/modules/io/src/image/private/vpImageIoLibjpeg.cpp +++ b/modules/io/src/image/private/vpImageIoLibjpeg.cpp @@ -109,7 +109,6 @@ void writeJPEGLibjpeg(const vpImage &I, const std::string &filena } jpeg_write_scanlines(&cinfo, &line, 1); } - std::cout << "DEBUG FS - on est dans writeJPEGLibjpeg() 1" << std::endl; exit(-1); jpeg_finish_compress(&cinfo); jpeg_destroy_compress(&cinfo); @@ -174,7 +173,6 @@ void writeJPEGLibjpeg(const vpImage &I, const std::string &filename, int } jpeg_write_scanlines(&cinfo, &line, 1); } - std::cout << "DEBUG FS - on est dans writeJPEGLibjpeg() 2" << std::endl; exit(-1); jpeg_finish_compress(&cinfo); jpeg_destroy_compress(&cinfo); delete[] line;