qdtk / openshadinglanguage

Automatically exported from code.google.com/p/openshadinglanguage
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

concat doesn't work with two arguments #47

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
it does work with three.

error: No matching function call to 'concat (string, string)'
    Candidates are:
        string concat (string, ...)

    string a1 = "bob";
    string a2 = "fred";
    string a3 = "";
no:    //string f = concat(a1, a2);
yes:    string f = concat(a1, a2, a3);

Original issue reported on code.google.com by dan.roli...@gmail.com on 13 Jan 2010 at 12:03

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago

Original comment by rene.lim...@gmail.com on 13 Jan 2010 at 12:56