- fixed missing #include's for targets without precompiled header

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
This commit is contained in:
alexey.lysiuk 2019-08-21 10:12:51 +03:00
parent 38fec546a7
commit 772adc86be
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@
#include "palette.h" #include "palette.h"
#include "palentry.h" #include "palentry.h"
#include <float.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
/****************************/ /****************************/
/* Palette management stuff */ /* Palette management stuff */
/****************************/ /****************************/