Add missing includes

Thanks to Benitoite
(https://github.com/Beep6581/RawTherapee/pull/5889#issuecomment-1475033091)
This commit is contained in:
Lawrence Lee 2023-03-18 18:15:38 -07:00
parent 20e78068cd
commit 1e6cc85fe2
No known key found for this signature in database
GPG Key ID: 048FF2B76A63895F
2 changed files with 5 additions and 3 deletions

View File

@ -17,19 +17,20 @@
* along with RawTherapee. If not, see <https://www.gnu.org/licenses/>.
*/
#include <functional>
#include <iostream>
#include <regex>
#include <sstream>
#include <strings.h>
#include <time.h>
#include <tiff.h>
#include <glib/gstdio.h>
#include <glibmm/convert.h>
#include <regex>
#include <sstream>
#include "imagedata.h"
#include "imagesource.h"
#include "rt_math.h"
#include "metadata.h"
#include "rt_math.h"
#include "utils.h"
#pragma GCC diagnostic warning "-Wextra"

View File

@ -19,6 +19,7 @@
*/
#include <cstdio>
#include <cstring>
#include <iostream>
#include <memory>
#include <string>
#include <utility>