clarification on dynamic arrays, switcheroo on typepointer, and a documentation test added

This commit is contained in:
RJ Catalano
2016-01-11 23:41:20 -06:00
parent b230fe1905
commit c45593a444
4 changed files with 21 additions and 4 deletions
+1 -1
View File
@@ -318,7 +318,7 @@ Can state variables be initialized in-line?
===========================================
Yes, this is possible for all types (even for structs). However, for arrays it
should be noted that you must declare them as static memory arrays. Futhermore, multi dimensional arrays cannot be declared inline.
should be noted that you must declare them as static memory arrays.
Examples::