diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-06-29 19:54:22 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-06-29 19:54:22 -0300 |
commit | ea6c8d5b8b3a4223b21f8cf2a08af14bb9e81352 (patch) | |
tree | ad01517581bb2f7a6641b7d52cd5d9efafccd913 /tools | |
parent | ac6257bf8ad51f0980e023ac4d28e8cd14fd606b (diff) |
Add Variant to the list of clases, so it can be documented (make sure it can't be documented that it can't be used). Closes #5237
Diffstat (limited to 'tools')
-rw-r--r-- | tools/doc/doc_data.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/doc/doc_data.cpp b/tools/doc/doc_data.cpp index e3689cf13d..470dd078ae 100644 --- a/tools/doc/doc_data.cpp +++ b/tools/doc/doc_data.cpp @@ -455,6 +455,12 @@ void DocData::generate(bool p_basic_types) { } + { + //so it can be documented that it does not exist + class_list["Variant"]=ClassDoc(); + class_list["Variant"].name="Variant"; + } + if (!p_basic_types) return; |