[ 
https://issues.apache.org/jira/browse/THRIFT-2503?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jens Geyer updated THRIFT-2503:
-------------------------------

      Description: 
When a Thrift "struct" defined in the .thrift IDL file has a member "val", the 
C++ compiler generates the following faulty code in the setter method for that 
member variable:
{code}
void MyStruct::__set_val(const int32_t val) {
  val = val;
__isset.val = true;
}
{code}

  was:
When a Thrift "struct" defined in the .thrift IDL file has a member "val", the 
C++ compiler generates the following faulty code in the setter method for that 
member variable:
void MyStruct::__set_val(const int32_t val) {
  val = val;
__isset.val = true;
}

    Fix Version/s: 0.9.2
         Assignee: Jens Geyer

> C++: Fix name collision when a struct has a member named "val"
> --------------------------------------------------------------
>
>                 Key: THRIFT-2503
>                 URL: https://issues.apache.org/jira/browse/THRIFT-2503
>             Project: Thrift
>          Issue Type: Bug
>          Components: C++ - Compiler
>    Affects Versions: 0.9.1
>            Reporter: Alexander Potashev
>            Assignee: Jens Geyer
>             Fix For: 0.9.2
>
>         Attachments: 
> 0001-THRIFT-2503-C-compiler-Fix-build-due-to-variable-nam.patch
>
>
> When a Thrift "struct" defined in the .thrift IDL file has a member "val", 
> the C++ compiler generates the following faulty code in the setter method for 
> that member variable:
> {code}
> void MyStruct::__set_val(const int32_t val) {
>   val = val;
> __isset.val = true;
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to