ermaker (Minwoo Lee)
- Login: ermaker
- Email: ermaker@gmail.com
- Registered on: 05/15/2009
- Last sign in: 08/17/2009
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/17/2009
-
10:13 AM Ruby Bug #1486: DL::CParser#parse_struct_signature fails when argument is a String.
- =begin
Patch Attached.
=end
05/18/2009
-
10:42 PM Ruby Bug #1486 (Closed): DL::CParser#parse_struct_signature fails when argument is a String.
- =begin
the result of
parse_struct_signature('int a, int b')
and
parse_struct_signature(['int a', 'int b'])
should be same.
But, the implementation is like this.
if( signature.is_a?(String) )
signature = signature.s...