| 3 | namespace cpp_odbc { namespace level2 { |
| 4 | |
| 5 | u16string_buffer::u16string_buffer(signed short int capacity) : |
| 6 | data_(capacity), |
| 7 | used_size_(0) |
| 8 | { |
| 9 | } |
| 10 | |
| 11 | signed short int u16string_buffer::capacity() const |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected