소스 검색

Merge pull request #26007 from marxin/fix-23015-cast

Make direct casting among Error and godot_error enums (#23015).
Rémi Verschelde 6 년 전
부모
커밋
98e4bda9f9
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      modules/gdnative/pluginscript/pluginscript_language.cpp

+ 1 - 2
modules/gdnative/pluginscript/pluginscript_language.cpp

@@ -173,8 +173,7 @@ Error PluginScriptLanguage::complete_code(const String &p_code, const String &p_
 		for (int i = 0; i < options.size(); i++) {
 			r_options->push_back(String(options[i]));
 		}
-		Error err = *(Error *)&tmp;
-		return err;
+		return (Error)tmp;
 	}
 	return ERR_UNAVAILABLE;
 }