http://d.puremagic.com/issues/show_bug.cgi?id=6248

           Summary: HTOD leaves out const when translating C headers
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: major
          Priority: P2
         Component: htod
        AssignedTo: nob...@puremagic.com
        ReportedBy: andrej.mitrov...@gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrov...@gmail.com> 2011-07-04 
18:43:50 PDT ---
test.h:
void foo(const char *str);

$ htod -hc test.h

test.d:
/* Converted to D from test.h by htod */
module test;
extern (C):
void  foo(char *str);

This is a big problem because now this function can't be passed a string via
toStringz, or even a string literal which is implicitly zero-terminated.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to