summaryrefslogtreecommitdiff
blob: 21017f6b41b170a9374d582dbf914fc7641bf19b (plain)
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;