Skip to content

Commit

Permalink
Removing commented code in IE driver
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jan 14, 2019
1 parent 0f726f0 commit 4e7f9b2
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions cpp/iedriver/StringUtilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,24 +67,6 @@ std::wstring StringUtilities::ToWString(const std::string& input) {
output = &output_buffer[0];
}

//if (output.size() > 0) {
// if (FALSE == ::IsNormalizedString(NormalizationC, output.c_str(), -1)) {
// int required = ::NormalizeString(NormalizationC,
// output.c_str(),
// -1,
// NULL,
// 0);
// output_buffer.clear();
// output_buffer.resize(required);
// ::NormalizeString(NormalizationC,
// output.c_str(),
// -1,
// &output_buffer[0],
// static_cast<int>(output_buffer.size()));
// output = &output_buffer[0];
// }
//}

return output;
}

Expand Down

0 comments on commit 4e7f9b2

Please sign in to comment.