diff options
author | Ralph Amissah <ralph@amissah.com> | 2015-10-06 13:21:37 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2015-10-06 13:21:37 -0400 |
commit | baf874b5a76a1be02961e88f31da8fd97c4623f6 (patch) | |
tree | 95af075763836934a242dbfc2add32afecdaf1fe /lib/sdp/ao_scan_inserts.d | |
parent | sdp.org minor (diff) |
dmd compiler warnings fixed
Diffstat (limited to 'lib/sdp/ao_scan_inserts.d')
-rw-r--r-- | lib/sdp/ao_scan_inserts.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sdp/ao_scan_inserts.d b/lib/sdp/ao_scan_inserts.d index e99222a..9111076 100644 --- a/lib/sdp/ao_scan_inserts.d +++ b/lib/sdp/ao_scan_inserts.d @@ -109,7 +109,7 @@ mixin template SiSUdocInserts() { return t; } auto scan_doc_source(char[][] markup_sourcefile_content, string fn_src) { - char[] cont_arbitrary_max_length_set[100000]; // 2000 pg * 50 lines + char[][100000] cont_arbitrary_max_length_set; // 2000 pg * 50 lines string[string] processing; uint[string] line_occur; auto obj_im = new ObjInlineMarkup(); |