~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/variables.cc

  • Committer: Olaf van der Spek
  • Date: 2011-02-24 13:19:47 UTC
  • mto: (2209.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2207.
  • Revision ID: olafvdspek@gmail.com-20110224131947-0fra5adn3kixp6v1
Use "iter->" instead of "(*iter)."

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
    bool null_value;
56
56
    uint32_t decimals= 4; // arbitrary
57
 
    (*iter).second->val_str(&null_value, &tmp, decimals);
 
57
    iter->second->val_str(&null_value, &tmp, decimals);
58
58
 
59
59
 
60
60
    // VARIABLE_NAME
61
 
    push((*iter).first);
 
61
    push(iter->first);
62
62
    
63
63
    // VARIABLE_VALUE 
64
64
    if (null_value)