Browse Source

Stop including iostream in Variant.hpp (to produce smaller binaries)

kb1000 4 years ago
parent
commit
3fe276c02f
3 changed files with 2 additions and 2 deletions
  1. 2 0
      include/core/Godot.hpp
  2. 0 1
      include/core/Variant.hpp
  3. 0 1
      src/core/Variant.cpp

+ 2 - 0
include/core/Godot.hpp

@@ -17,6 +17,8 @@
 
 #include "GodotGlobal.hpp"
 
+#include <type_traits>
+
 namespace godot {
 namespace detail {
 

+ 0 - 1
include/core/Variant.hpp

@@ -20,7 +20,6 @@
 #include "Vector2.hpp"
 #include "Vector3.hpp"
 
-#include <iostream>
 
 namespace godot {
 

+ 0 - 1
src/core/Variant.cpp

@@ -7,7 +7,6 @@
 #include "GodotGlobal.hpp"
 #include "Object.hpp"
 
-#include <iostream>
 
 namespace godot {