diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-12 09:05:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-20 15:45:46 +0200 |
commit | ce67e078eb0a2a867a0381d849d5b8180c1f6e25 (patch) | |
tree | 94a65f69959b00129f8f07207ac16b391e435632 /oracle | |
parent | 2a8f6db525ba7f400c170cdd6321dcb20c2d24e3 (diff) |
Fix incorrect argument order
Diffstat (limited to 'oracle')
-rw-r--r-- | oracle/types/test.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oracle/types/test.hxx b/oracle/types/test.hxx index 0e48745..53f09e8 100644 --- a/oracle/types/test.hxx +++ b/oracle/types/test.hxx @@ -278,7 +278,7 @@ struct blob blob (): id_ (0) {} blob (unsigned int id, std::size_t n) - : id_ (id), value_ ('b', n) + : id_ (id), value_ (n, 'b') { } |