Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
artpaul committed Aug 24, 2017
1 parent e7a6959 commit 29a7971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ RETCODE fillOutputU16String(const STRING & value,
PTR out_value, LENGTH out_value_max_length, LENGTH * out_value_length)
{
LENGTH size_without_zero = static_cast<LENGTH>(value.size());
const size_t typeSize = sizeof(STRING::value_type);
const size_t typeSize = sizeof(typename STRING::value_type);

if (out_value_length)
*out_value_length = size_without_zero * typeSize;
Expand Down

0 comments on commit 29a7971

Please sign in to comment.