1 2 3 4 5 6 7 8 9 10 11
Fixes compilation due to missing <cmath> header required in this file. diff --git a/g_src/ttf_manager.cpp b/g_src/ttf_manager.cpp @@ -1,6 +1,7 @@ #include "ttf_manager.hpp" #include "init.h" #include <iostream> +#include <cmath> using namespace std;