HerbertKoelman / cpp-atmi

Application-to-Transaction Monitor Interface (ATMI) C++ library
http://herbertkoelman.github.com/cpp-atmi
Other
7 stars 0 forks source link

Update README sample code #66

Closed HerbertKoelman closed 8 years ago

HerbertKoelman commented 8 years ago

Sample code has not been updated. It's still using pointer instead of references:

buffer.add (&a_field);

should become

buffer.add (a_field);