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