aboutsummaryrefslogtreecommitdiff
path: root/mysql/types/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-18 18:27:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-18 18:27:00 +0200
commita5e7a049052324e34cb7d163333f6e449065c5af (patch)
tree2e8fd57c5abf11cb906d6b0c2cc47e351a31c928 /mysql/types/driver.cxx
parentb41056d73ee0c2ba29649932625d620434350a9f (diff)
Move buffer to the details namespace
Diffstat (limited to 'mysql/types/driver.cxx')
-rw-r--r--mysql/types/driver.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql/types/driver.cxx b/mysql/types/driver.cxx
index d8b8d21..e0d6b42 100644
--- a/mysql/types/driver.cxx
+++ b/mysql/types/driver.cxx
@@ -53,11 +53,11 @@ main (int argc, char* argv[])
o.year_ = 2010;
string short_str (128, 's');
- ::buffer short_buf (short_str.c_str (), short_str.size ());
+ buffer short_buf (short_str.c_str (), short_str.size ());
string medium_str (250, 'm');
- ::buffer medium_buf (medium_str.c_str (), medium_str.size ());
+ buffer medium_buf (medium_str.c_str (), medium_str.size ());
string long_str (2040, 'l');
- ::buffer long_buf (long_str.c_str (), long_str.size ());
+ buffer long_buf (long_str.c_str (), long_str.size ());
o.char_ = short_str;
o.binary_ = short_buf;