diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-10 17:42:36 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-10 17:42:36 +0200 |
commit | 28f642097a7986867e4fb7d697764efb4db753bf (patch) | |
tree | 21bdd84136affed87a165c6b0b604284ef6b5a4c /core/object/script_language_extension.h | |
parent | db7047705b4f7896f89cd7652a7868a7668c18a4 (diff) | |
parent | 80178271447455efb7d12ef52f09e8408c042d59 (diff) |
Merge pull request #67183 from akien-mga/gcc-warnings-cleanup
SCons: Cleanup GCC warnings configuration
Diffstat (limited to 'core/object/script_language_extension.h')
-rw-r--r-- | core/object/script_language_extension.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/object/script_language_extension.h b/core/object/script_language_extension.h index 7e74f6a2be..15e2d57a3a 100644 --- a/core/object/script_language_extension.h +++ b/core/object/script_language_extension.h @@ -82,9 +82,7 @@ public: GDVIRTUAL_REQUIRED_CALL(_get_documentation, doc); Vector<DocData::ClassDoc> class_doc; -#ifndef _MSC_VER -#warning missing conversion from documentation to ClassDoc -#endif + // TODO: Missing conversion from documentation to ClassDoc. return class_doc; } #endif // TOOLS_ENABLED |