summaryrefslogtreecommitdiff
path: root/tools/doc
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2016-05-03 16:29:32 -0300
committerGeorge Marques <george@gmarqu.es>2016-05-03 16:35:36 -0300
commit9424c6c58f0b33f06807936958978e907574a845 (patch)
tree1fa02b1f67a0a62a235d53053e054ae16b71c851 /tools/doc
parent5b039245b9d95c8ca1914d41d976e9a52e5510ef (diff)
Fix windows 64-bits build.
The change in `tools/doc/doc_data.cpp` is needed because the MSVC compiler does not support variable length arrays. Fix #4113
Diffstat (limited to 'tools/doc')
-rw-r--r--tools/doc/doc_data.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/doc/doc_data.cpp b/tools/doc/doc_data.cpp
index 4232a6480d..dc2150e6cc 100644
--- a/tools/doc/doc_data.cpp
+++ b/tools/doc/doc_data.cpp
@@ -64,7 +64,7 @@ void DocData::merge_from(const DocData& p_data) {
// since polymorphic functions are allowed we need to check the type of
// the arguments so we make sure they are different.
int arg_count = cf.methods[j].arguments.size();
- bool arg_used[arg_count];
+ bool* arg_used = new bool[arg_count];
for (int l = 0; l < arg_count; ++l) arg_used[l] = false;
// also there is no guarantee that argument ordering will match, so we
// have to check one by one so we make sure we have an exact match