From 4aec7cbf42e3e9e30211206f6b71b84962aba473 Mon Sep 17 00:00:00 2001 From: RameshRavone Date: Wed, 24 Jan 2018 15:18:30 +0530 Subject: [PATCH] Do not include Ref.hpp file in Reference.hpp --- binding_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding_generator.py b/binding_generator.py index cff0d54e..9c6b00af 100644 --- a/binding_generator.py +++ b/binding_generator.py @@ -77,7 +77,7 @@ def generate_class_header(used_classes, c): # Ref is not included in object.h in Godot either, # so don't include it here because it's not needed - if class_name != "Object": + if class_name != "Object" and class_name != "Reference": source.append("#include ")