39 lines
836 B
Diff
39 lines
836 B
Diff
From de25bc1fab42ce294fbc0aa94f0cd0621491bf2e Mon Sep 17 00:00:00 2001
|
|
From: Christophe Giboudeaux <christophe@krop.fr>
|
|
Date: Mon, 7 Feb 2022 22:12:15 +0100
|
|
Subject: [PATCH] Remove unneeded CImg include
|
|
|
|
Build fails if CImg.h is included before gmic.h
|
|
---
|
|
src/gmic_cli.cpp | 1 -
|
|
src/gmic_libc.cpp | 1 -
|
|
2 files changed, 2 deletions(-)
|
|
|
|
diff --git a/src/gmic_cli.cpp b/src/gmic_cli.cpp
|
|
index b9ffa22..6d21160 100644
|
|
--- a/src/gmic_cli.cpp
|
|
+++ b/src/gmic_cli.cpp
|
|
@@ -49,7 +49,6 @@
|
|
*/
|
|
|
|
#include <signal.h>
|
|
-#include "CImg.h"
|
|
#include "gmic.h"
|
|
using namespace cimg_library;
|
|
|
|
diff --git a/src/gmic_libc.cpp b/src/gmic_libc.cpp
|
|
index 0736126..9aef11a 100644
|
|
--- a/src/gmic_libc.cpp
|
|
+++ b/src/gmic_libc.cpp
|
|
@@ -41,7 +41,6 @@
|
|
*/
|
|
|
|
#include <string>
|
|
-#include "CImg.h"
|
|
#include "gmic.h"
|
|
#include "gmic_libc.h"
|
|
|
|
--
|
|
2.35.1
|
|
|