From 772adc86beb0d86917f274dc27ee8fab7b55c41b Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Wed, 21 Aug 2019 10:12:51 +0300 Subject: [PATCH] - fixed missing #include's for targets without precompiled header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/utility/palette.cpp:76:21: error: ‘DBL_MAX’ was not declared in this scope src/utility/palette.cpp:84:76: error: ‘pow’ was not declared in this scope src/utility/palette.cpp:89:41: error: ‘abs’ was not declared in this scope src/utility/palette.cpp:92:3: error: ‘fdist’ was not declared in this scope src/utility/palette.cpp:196:46: error: ‘memcpy’ was not declared in this scope src/utility/palette.cpp:298:19: error: ‘floor’ was not declared in this scope --- src/utility/palette.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/utility/palette.cpp b/src/utility/palette.cpp index e79e68a54..84debab9f 100644 --- a/src/utility/palette.cpp +++ b/src/utility/palette.cpp @@ -35,6 +35,11 @@ #include "palette.h" #include "palentry.h" +#include +#include +#include +#include + /****************************/ /* Palette management stuff */ /****************************/